= pd.DataFrame({'a': range(5), 'b': range(5)})
df 'I am a table') df.title(
display
DataFrame.title
DataFrame.title (title)
Displays DataFrame with a title.
Walker
Walker (val=0, min_val=None, max_val=None)
Initialize self. See help(type(self)) for accurate signature.
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.
= pd.DataFrame({'a': range(17), 'b': range(17)})
df =7, page=2) df.less(page_size
=3, where=df.a.gt(5)) df.less(page_size
Series.less
Series.less (page_size=5, where=None)
Displays one page of the Series and buttons to move forward and backward.
= pd.Series(range(7))
s s.less()
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.
= pd.DataFrame({'a': [0.1, 0.2], 'b': ['a', 'b']})
df df.to_percent()
a | b | |
---|---|---|
0 | 10.0% | a |
1 | 20.0% | b |