Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
ERR/BUG: df2.fillna(df1) should raise NotImplementedError #8377
Comments
jreback
added Missing-data Error Reporting
labels
Sep 23, 2014
jreback
modified the milestone: 0.15.0, 0.15.1
Sep 23, 2014
jreback
added Enhancement and removed Error Reporting
labels
Sep 23, 2014
This was referenced Sep 23, 2014
jreback
modified the milestone: 0.15.0, 0.15.1
Sep 26, 2014
jreback
closed this
in #8388
Sep 26, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
jreback commentedSep 23, 2014
from SO
df2.fillna(df1)should be implemented by:df2.where(df2.notnull(),df2,df1)