To add two dataframes value function may be used
Answers
Answered by
0
Hi,
You can use the following methods to combine the data frames:
1) append method
df = A.append(B)
2) pd.concat method
df = pd.concat([A,B])
please mark me as brilliant
Similar questions