We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This throws an error:
ggsubseriesplot(AirPassengers, labels = 1:12) Error in ggAddExtras(ylab = deparse(substitute(x)), xlab = xlab) : object 'xlab' not found ggsubseriesplot(AirPassengers, labels = letters[1:12] ) Error in ggAddExtras(ylab = deparse(substitute(x)), xlab = xlab) : object 'xlab' not found
Providing the function with a xlab argument makes it work:
ggsubseriesplot(AirPassengers, labels = 1:12, xlab="xlab argument needs to be set") ggsubseriesplot(AirPassengers, labels = letters[1:12], xlab="Please set xlab argument")
The problem comes from this if block. It sets xbreaks, but does not set xlab.
forecast/R/ggplot.R
Lines 1254 to 1260 in ace207e
Lines 1261 to 1279 in ace207e
The text was updated successfully, but these errors were encountered:
Thanks. Fixed in 97a0a4a
Sorry, something went wrong.
No branches or pull requests
This throws an error:
Providing the function with a xlab argument makes it work:
The problem comes from this if block. It sets xbreaks, but does not set xlab.
forecast/R/ggplot.R
Lines 1254 to 1260 in ace207e
The if blocks on lines 1261 to 1279 set both xbreaks and xlab.
forecast/R/ggplot.R
Lines 1261 to 1279 in ace207e
The text was updated successfully, but these errors were encountered: