Source From Here
Question
I have the following indexed DataFrame with named columns and rows not- continuous numbers:
I would like to add a new column, 'e', to the existing data frame and do not want to change anything in the data frame (
i.e., the new column always has the same length as the DataFrame).
How-To
Use the original df indexes to create the series:
Some reported to get the SettingWithCopyWarning with this code. However, the code still runs perfect with the current pandas version 0.16.1. The SettingWithCopyWarning aims to inform of a possibly invalid assignment on a copy of the Dataframe. It doesn't necessarily say you did it wrong (it can trigger false positives) but from 0.13.0 it let you know there are more adequate methods for the same purpose. Then, if you get the warning, just follow its advise: Try using .loc[row_index,col_indexer] = value instead:
In fact, this is currently the more efficient method as described in pandas docs. Currently the best method to add the values of a Series as a new column of a DataFrame could be using assign:
Question
I have the following indexed DataFrame with named columns and rows not- continuous numbers:
- a b c d
- 2 0.671399 0.101208 -0.181532 0.241273
- 3 0.446172 -0.243316 0.051767 1.577318
- 5 0.614758 0.075793 -0.451460 -0.012493
- 0 -0.335485
- 1 -1.166658
- 2 -0.385571
- dtype: float64
Use the original df indexes to create the series:
Some reported to get the SettingWithCopyWarning with this code. However, the code still runs perfect with the current pandas version 0.16.1. The SettingWithCopyWarning aims to inform of a possibly invalid assignment on a copy of the Dataframe. It doesn't necessarily say you did it wrong (it can trigger false positives) but from 0.13.0 it let you know there are more adequate methods for the same purpose. Then, if you get the warning, just follow its advise: Try using .loc[row_index,col_indexer] = value instead:
In fact, this is currently the more efficient method as described in pandas docs. Currently the best method to add the values of a Series as a new column of a DataFrame could be using assign:
沒有留言:
張貼留言