Answers for "copy a dataframe into another dataframe"

0

copy a df to another df

s = pd.Series([1, 2], index=["a", "b"])
>>> deep = s.copy()
>>> shallow = s.copy(deep=False)
Posted by: Guest on November-16-2021
0

pandas copy data from a column to another

df = pd.DataFrame()

df['X'] = [0, 3, 1, 1, 2, 2, 3, 3, 1, 2]
df['Y'] = [111.0, np.nan, np.nan, 112, 113, np.nan, 114, 115, np.nan, 116]

df['Y'] = df['Y'].fillna(df['X'])

print(df)
Posted by: Guest on February-10-2020

Code answers related to "copy a dataframe into another dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language