plot title to plot in r code example
Example: how to title plot in r
> plot(faithful,
+ main = "Eruptions of Old Faithful",
+ xlab = "Eruption time (min)",
+ ylab = "Waiting time to next eruption (min)")
> plot(faithful,
+ main = "Eruptions of Old Faithful",
+ xlab = "Eruption time (min)",
+ ylab = "Waiting time to next eruption (min)")