-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
Cannot fill inserted column of NaNs #304
Comments
wesm
added a commit
that referenced
this issue
Oct 28, 2011
thanks for catching this. fixed in the above commit |
Awesome, thanks Wes. |
yarikoptic
added a commit
to neurodebian/pandas
that referenced
this issue
Nov 2, 2011
* commit 'v0.5.0-7-gcf32be2': (161 commits) ENH: add melt function, speed up DataFrame.apply DOC: release notes re: GH pandas-dev#304 BUG: clear Series caches on consolidation, address GH pandas-dev#304 DOC: fix exceptions in docs ENH: cython count_level function, cleanup and tests DOC: update release note BUG: fix DataFrame.to_csv bug described in GH pandas-dev#290 RLS: Version 0.5.0 BLD: another 2to3 fix BLD: docstring fixes to suppress 2to3 warnings BUG: handle negative indices extending before beginning of Series TST: fix test case broken by last change BUG: don't be too aggressive with int conversion parsing MultiIndex, GH pandas-dev#285 BUG: missed one BUG: workaround not being able to use cast=True with boolean dtype in Python 2.5 TST: tuples and strings aren't comparable in python 3 TST: more 32-bit integer fussiness ENH: -> int64 everywhere TST: int64 fixes TST: 32-bit use 64-bit integer ...
dan-nadler
pushed a commit
to dan-nadler/pandas
that referenced
this issue
Sep 23, 2019
…-dev#304) With most recent updates to the server test fixtures (pytest-server-fixtures) we should be able to run with sudo: false again, thus enabling containers again. This will result in a small but noticeable speedup in build times
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After inserting a column of NaNs into a preexisting DataFrame its contents cannot be filled using advanced indexing. See test case below.
This only appears to happen if the existing DataFrame is filled with floats, i.e. it works fine for ints.
Tested with pandas 0.5 and latest github snapshot.
The output I get is
The text was updated successfully, but these errors were encountered: