-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
added pd as namespace #12608
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
added pd as namespace #12608
Conversation
@@ -2895,6 +2895,24 @@ everything in the sub-store and BELOW, so be *careful*. | |||
|
|||
.. _io.hdf5-types: | |||
|
|||
.. warning:: Hierarchical keys cannot be retrieved as dotted (attribute) access as described above for items stored under root node. | |||
|
|||
.. ipython:: python |
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.
pls take this out. This is a completly separate issue that we may or may not include.
@@ -1475,7 +1475,7 @@ Writing to a file, with a date index and a date column | |||
dfj2['date'] = Timestamp('20130101') |
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.
Are these remainings are intentional? Pls change others and remove from pandas import *
.
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.
Sorry but this was not my change.
Something must habe gotten confused.
Ah, OK. will do. |
more consistent with code in the rest of the document added more namespace Generally, also numpy's randn should used as np.random.randn isolated namespace changes removed warning on hdf groups remaining namespace
pls build the docs. This makes most things actually fail as there are lots of additional imports that are needed (or |
@dacoex can you update |
Sorry, I'd been busy with some other items off the coding domain. |
@@ -3127,7 +3126,7 @@ specified in the format: ``<float>(<unit>)``, where float may be signed (and fra | |||
.. ipython:: python | |||
|
|||
from datetime import timedelta | |||
dftd = DataFrame(dict(A = Timestamp('20130101'), B = [ Timestamp('20130101') + timedelta(days=i,seconds=10) for i in range(10) ])) | |||
dftd = pd.DataFrame(dict(A = Timestamp('20130101'), B = [ Timestamp('20130101') + timedelta(days=i,seconds=10) for i in range(10) ])) |
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.
so since you eliminated the from pandas import *
you need to build the docs and you will see failures, eg. pd.Timestamp
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.
Ah. OK, thanks for the hint.
can you rebase and update |
can you rebase / update? |
pls reopen when you can update |
This is the msg:
more consistent with code in the rest of the document
added more namespace
Generally, also numpy's randn should used as
np.random.randn
isolated namespace changes
Note:
I hope I got the rebase & merge right.