I am trying to plot data with maximum 9.70 and minimum -58.9.
I coded:
plot(BriannaJan[,3,i], type = \"line\", col=\"black\", main = \"Brianna
You need to change it to
ylim=c(-60,10)
so the whole thing would be:
plot(BriannaJan[,3,i], type = "line", col="black", main ="Brianna January Trend", xlab = "days", ylab="Temperature", ylim=c(-60,10))