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
Currently failing test case:
df = DataFrame([[1,2,'foo','bar']], columns=['a','a','a','a']) s = Series([1, 2, 'foo', 'bar'], index=['a', 'a', 'a', 'a'], name=0) assert_series_equal(df.irow(0), s)
Here's what's going on right now.
In [3]: from pandas import * In [4]: df = DataFrame([[1,2,'foo','bar']], columns=['a','a','a','a']) In [5]: df Out[5]: a a a a 0 1 2 foo bar In [6]: df.irow(0) Out[6]: a bar a bar a bar a bar Name: 0, dtype: object In [7]: df.icol(0) Out[7]: 0 1 Name: a, dtype: int64 In [8]: df.columns Out[8]: Index([u'a', u'a', u'a', u'a'], dtype=object)
The text was updated successfully, but these errors were encountered:
Also same with iloc:
In [9]: df.iloc[0, :] Out[9]: a bar a bar a bar a bar Name: 0, dtype: object
cc @jreback
Sorry, something went wrong.
yep...this hits an older path that was never fixed for the _ref_locs.....
Successfully merging a pull request may close this issue.
Currently failing test case:
Here's what's going on right now.
The text was updated successfully, but these errors were encountered: