Q30
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))
AnswerD.
tsplot(values, time)
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board