display


DataFrame.title

 DataFrame.title (title)

Displays DataFrame with a title.

df = pd.DataFrame({'a': range(5), 'b': range(5)})
df.title('I am a table')

source

Walker

 Walker (val=0, min_val=None, max_val=None)

Initialize self. See help(type(self)) for accurate signature.


source

Less

 Less (df, page_size=5, page=1, where=None)

Initialize self. See help(type(self)) for accurate signature.


DataFrame.less

 DataFrame.less (page_size=5, page=1, where=None)

Displays one page of the DataFrame and buttons to move forward and backward.

df = pd.DataFrame({'a': range(17), 'b': range(17)})
df.less(page_size=7, page=2)
df.less(page_size=3, where=df.a.gt(5))

Series.less

 Series.less (page_size=5, where=None)

Displays one page of the Series and buttons to move forward and backward.

s = pd.Series(range(7))
s.less()

source

L.less

 L.less (page_size=5, page=0, where=None)

Displays one page of the DataFrame and buttons to move forward and backward.


DataFrame.to_percent

 DataFrame.to_percent (exclude=[])

Formats float columns to percentage.

df = pd.DataFrame({'a': [0.1, 0.2], 'b': ['a', 'b']})
df.to_percent()
  a b
0 10.0% a
1 20.0% b