There is a list of numbers and I want to make it a time series, and plot it.
month_data <- c(34,28,32,26,28,29,39,33,31,31,34,29)
month_ts <- ts(month_data, start = c(2017, 01), frequency = 12)
plot(month_ts)
The plot starts from zero, and it doesn't show the values accordingly, for example the peak (39) July is sits in May.
What went wrong? Thank you.