Jesse_V
Jesse_V

Reputation: 72

How to copy value of dataframe to another dataframe's last column/row

I have dataframe:

First Dataframe AND dataframe:

Second Dataframe
How do I insert the value from the first dataframe into the bottom of the second dataframe? The column header will change each day.

Upvotes: 1

Views: 35

Answers (1)

Jinter
Jinter

Reputation: 226

t2 = t2.append(table10.iloc[0], ignore_index=True)

Upvotes: 1

Related Questions