View source: R/plot_light_profile2d.R
plot.light_profile2d | R Documentation |
Minimal visualization of an object of class "light_profile2d". The object returned is of class "ggplot" and can be further customized.
## S3 method for class 'light_profile2d'
plot(x, swap_dim = FALSE, rotate_x = TRUE, numeric_as_factor = FALSE, ...)
x |
An object of class "light_profile2d". |
swap_dim |
Swap the |
rotate_x |
Should the x axis labels be rotated by 45 degrees? Default is |
numeric_as_factor |
Should numeric x and y values be converted to factors first?
Default is |
... |
Further arguments passed to |
The main geometry is ggplot2::geom_tile()
. Additional dimensions
("by" variable(s) and/or multiflashlight) are represented by facet_wrap/grid
.
For all types of profiles except "partial dependence", it is natural to see
empty parts in the plot. These are combinations of the v
variables that
do not appear in the data. Even for type "partial dependence", such gaps can occur,
e.g. for cut_type = "quantile"
or if n_bins
are larger than the number
of distinct values of a v
variable.
Such gaps can be suppressed by setting numeric_as_factor = TRUE
or by using the arguments breaks
, pd_evaluate_at
or pd_grid
in
light_profile2d()
.
An object of class "ggplot".
light_profile2d()
fit <- lm(Sepal.Length ~ ., data = iris)
fl <- flashlight(model = fit, label = "iris", data = iris, y = "Sepal.Length")
plot(light_profile2d(fl, v = c("Petal.Length", "Species")))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.