We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
In [1]: import pandas as pd In [2]: pd.__version__ Out[2]: '0.11.1.dev-45d298d' In [3]: pd.Series(10) Out[3]: 10
Ok, when setting index explicitly
In [4]: pd.Series(10, index=[0]) Out[4]: 0 10 dtype: int64
The text was updated successfully, but these errors were encountered:
this is a current feature, but is a very unpandas like thing to do and is confusing.
I am planning on banning this in 0.12 with the refactor of series however (as this is implemented in new, which is not going to be used explicity).
Sorry, something went wrong.
see #3482
Interesting feature :-), to me it looked like a bug. What was the idea behind this feature?
I have no idea, was there originaly....
@wesm ?
closed by #3482
No branches or pull requests
Ok, when setting index explicitly
The text was updated successfully, but these errors were encountered: