So I'm trying to get daily temperature changes from a smoothed line graph I created using future expected seasonal increases.
So I have 4 data points, and I'm trying to get 365 values from it.
How would I got about doing that?
(I used geom_smooth(method = loess) to do the line graph, I did get warnings about my small data set but I assumed it was okay).
The only thing I could think of is pulling one data point at a time in the console, but there must be a more efficient way to go about this.