Hello everyone,
I'm new in R programming and I need a small help.
I want to display one of the column of my table from excel.
I need to use following codes:
autoplot.zoo(gdp)
adf.test(gdp)
dgdp=diff(gdp)
autoplot.zoo(dgdp)
adf.test(dgdp)
But when I enter autoplot.zoo(gdp) I keep getting an error
geom_path: Each group consists of only one
observation. Do you need to adjust the group
aesthetic?
i don't know how to group in this code or what I need to do.
P.s I tried many things, But i couldn't plot a simple line graph.
Pls help
Thank you