Hey, I have this data but, I couldn't be able to fit the Ts on the data perfectly that will plot the correct time plot for the data.
Here is my data:
s <- read.csv(url('https://ondemand.websol.barchart.com/getHistory.csv?apikey=c3122f072488a29c5279680b9a2cf88e&symbol=zs*1&type=dailyNearest&backAdjust=false&startDate=20100201'))
Here is my code:
data <- s[c(3, 7)]
summary(data)
ts_soy <- ts(data[,2], start = c(2010-02-01), frequency = 365.25)
autoplot(ts_soy)