graph - R Programming- Used customising package ggfortifty on plot -
hi created time series in r , used ggfortify make pretty.
it uses function called autoplot wish change axis , title names, unsure how to.
salesarmaplot <-arima(sales, order = c(1,1,1)) finalforecast <-forecast(sales, x=banter, y= banter,armaplot,h=8) autoplot(finalforecast)
the image attached shows plot.
try using following parameters inside autoplot function
xlab = "x_label", main = "title", ylab = "y_label"
Comments
Post a Comment