I have a dataframe, df1
Items_sold Stock
100 1.11
150 2.22
200 3.33
And another df2
Items_sold_pred Stock_pred
50 1.11
100 2.22
150 3.33
How do I add the last values of the last row of df1 to df2 column wise, such that df2 gets a final output like this? I simply add 100 and 3.33 to Items_sold_pred and Stock_pred respectively.
Items_sold_pred Stock_pred
250 4.44
300 5.55
350 6.66