fastEda
is intended to make repeated plotting tasks easier and faster.
Using the available functions users will be able to quickly create
multiple plots on similar data to perform common tasks such as:
fastEda
is currently only available in GitHub. Install the package
with:
# install.packages("devtools")
devtools::install_github("Curious-Joe/fastEda")
library(fastEda)
library(dplyr)
biv_bar_plot(dataset = iris %>%
mutate(Sepal_Width_Categorie = ifelse(Sepal.Width <
mean(iris$Sepal.Width), 'Low', 'High')),
classVar = Species, order = c("setosa", "virginica", "versicolor"),
colors = c("#5a4fcf", "#9890f0", "#d3d0f5"),
barType = "fill")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.