Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
BUG: fix col iteration in DataFrame.round, #11611 #11618
Conversation
MaximilianR
commented on the diff
Nov 16, 2015
| try: | ||
| - yield np.round(df[col], decimals[col]) | ||
| + yield np.round(vals, decimals[col]) |
MaximilianR
Contributor
|
|
need some tests |
MaximilianR
referenced
this pull request
Nov 17, 2015
Open
CLN: blocks, not series, should contain logic for arithmetic #9859
jreback
added Bug Reshaping Compat
labels
Nov 18, 2015
|
pls add the test example as well (you can just smoke tests it I think; e.g. assert it runs). add a tests for passing a non-unique decimal. put this in the bug-fix section for a whatsnew entry. |
|
Agreed. |
skycaptain
added some commits
Nov 18, 2015
jreback
added this to the
0.17.1
milestone
Nov 20, 2015
jreback
added a commit
that referenced
this pull request
Nov 20, 2015
|
|
skycaptain + jreback |
80a2d53
|
|
merged via 80a2d53 thanks! |
skycaptain commentedNov 16, 2015
Fixes #11611. The iterator now uses DataFrame.iteritems instead of direct indexing.