I have a pandas Series
, sufficiently small so I can read all items (about 80), but too big for the size of the screen.
Is there some python
command ou ipython
(notebook) magic command or pandas
function to columnate that list
or Series
so I can read it entirely without scrolling down and up?
I'm basically looking for the equivalent of the column
command in bash
.
For example, I have a Series
like this:
A 76
B 56
C 42
D 31
E 31
F 25
G 24
And let's say that my screen is so small that I need to scroll down to see after the B
row. What I'd like is something like this:
A 76 C 42 E 31 G 24
B 56 D 31 F 25