How do you create a time series plot in R for a numeric variable values with corresponding time points time?
A. time_series(values ~ time)
B. plot_time_series(values, time)
C. geom_line(mapping = aes(x = time, y = values))
D. tsplot(values, time)
Answer: Option C
Join The Discussion