autoplot with ggplot returning different results from textbook solution

I'm working on some self study and am unable to replicate a plot provided in the solutions.

pacman::p_load(tidyverse, fable, fpp3, feasts)
aus_livestock %>%
  filter(State == "Victoria") %>%
  model(SNAIVE(Count)) %>%
  forecast(h = "5 years") %>%
  autoplot(aus_livestock)

The above block is expected to return a plot looking like this:

But when I try this block I get this!

Why does my plot render differently and how can I mimic the textbook solutions plot?

I think it's just a matter of the height/width/dpi parameters.

I think @martin.R is right, because it works for me when I start with a relative large plot panel

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.