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
related #4236
maybe should print as:
Series([], name: foo, dtype: int64) ?
Series([], name: foo, dtype: int64)
In [9]: s = Series([], dtype=np.int64, name='foo') In [10]: s Out[10]: Series([], dtype: int64)
In [7]: s2 = Series([1,2],name='foo') In [8]: s2 Out[8]: 0 1 1 2 Name: foo, dtype: int64
The text was updated successfully, but these errors were encountered:
Merge pull request #5335 from goyodiaz/repr_empty
48156af
BUG: empty series not printing name in repr (#4651)
closed by #5335
Sorry, something went wrong.
No branches or pull requests
related #4236
maybe should print as:
Series([], name: foo, dtype: int64)
?The text was updated successfully, but these errors were encountered: