Based on this question:
Predict() - Maybe I'm not understanding it
Does anyone understand on what criteria I choose my values I want to predict for my newdataframe?
model <- lm(Coupon ~ Total, data=df)
new.df <- data.frame(Total=c(79037022, 83100656, 104299800))
predict(model, new.df)
They are using this code and I just cannot get behind it where the 3 values: "79037022, 83100656, 104299800" come from that eventually are put in
predict(model, new.df)
Thank you! :)