The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
library(ezplot)
suppressPackageStartupMessages(library(tsibble))
library(tsibbledata)
library(ggplot2)
variable_plot(ansett, "Week", "Passengers", facet_x = "Class")
#> Warning: Removed 107 rows containing missing values (`geom_line()`).
variable_plot(ansett, "Week", "Passengers", facet_x = "Class", yoy = TRUE)
#> Warning: Removed 107 rows containing missing values (`geom_line()`).
variable_plot(subset(hh_budget, Year > 2013), "Year",
c("Debt\n(% of disposable income)" = "Debt",
"Expenditure\nGrowth (%)" = "Expenditure",
"Unemployment (%)" = "Unemployment"),
facet_x = "Country", geom = "bar")
variable_plot(subset(hh_budget, Year > 2013), "Year",
c("Debt\n(% of disposable income)" = "Debt",
"Expenditure\nGrowth (%)" = "Expenditure",
"Unemployment (%)" = "Unemployment"),
group = "Country", geom = "bar")
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.