plot_density_class | R Documentation |
This function generates density plots using ggplot2 grouped by a specified class label from a data frame containing numeric values.
plot_density_class(
data,
class_label,
label_x = "",
label_y = "",
colors = NULL,
bin = NULL,
alpha = 0.5
)
data |
data.frame contain x, value, and variable |
class_label |
name of attribute for class label |
label_x |
x-axis label |
label_y |
y-axis label |
colors |
color vector |
bin |
bin width for density estimation |
alpha |
level of transparency |
returns a ggplot graphic
grf <- plot_density_class(iris |> dplyr::select(Sepal.Width, Species),
class = "Species", colors=c("red", "green", "blue"))
plot(grf)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.