Pacote de R para análise descritiva.
install.packages("devtools")
devtools::install_github("elemosjr/analisedescritiva")
library(analisedescritiva)
mapply(c,
list(
plot_continuous(iris, plot_type = "hist", grid = FALSE),
plot_continuous(iris, plot_type = "density", grid = FALSE),
plot_continuous(iris, plot_type = "box", grid = FALSE,
coord_flip= TRUE),
plot_continuous(iris, plot_type = "violin", grid = FALSE,
coord_flip = TRUE,
add = geom_boxplot(aes(x = "x"),
width = 0.1,
col = "black"))
),
SIMPLIFY = TRUE) %>%
grid_list()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.