I am trying to plot Autcorrelation Function from a time series. I'm using ggplot
function ggAcf
and I've got the next graph
This is my code
acf_or<-ggAcf(data_or$y, lag.max=100)+
theme(axis.text = element_text(size=base*expand), axis.title = element_text(size=base*expand))+
ggtitle("")+labs(x="", y="")+ylim(c(-1,1))
I would like to make some changes to confidence interval lines, like color, width and linetype. Is there any option to do it changing some parameters in the function ggAcf
?