-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP for transitioning from Panel docs #832
Conversation
|
||
.. ipython:: python | ||
panel=pd.Panel( pd.np.random.rand(2,3,4), items=list('ab'), major_axis=list('mno'), | ||
minor_axis=pd.date_range(start='2000', periods=4, name='date')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use whitespace according to pep8 here
|
||
.. ipython:: python | ||
panel=pd.Panel(np.random.rand(2,3,4), items=list('ab'), major_axis=list('mno'), | ||
minor_axis=pd.date_range(start='2000', periods=4, name='date')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we pep8 this?
panel = pd.Panel(np.random.rand(2, 3, 4), items=list('ab'), major_axis=list('mno'),
minor_axis=pd.date_range(start='2000', periods=4, name='date'))
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
LGTM after a few tweaks. If the docs aren't formatted quite right we can always fix that later. |
Updated @shoyer |
Thanks @MaximilianR ! |
A start for some docs on transitioning from pandas Panel to xarray.
This is some way from the final version - but putting it out there and will iterate.