Answers for "how to make index of one dataframe to another dataframe"

0

use the index of a dataframe for another dataframe

df2 = pd.DataFrame(df2,index=df1.index)
Posted by: Guest on July-20-2020

Code answers related to "how to make index of one dataframe to another dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language