Description Usage Arguments Value Examples
View source: R/plot_histograms.R
Detect outliers in the given list. Plots histogram given numeric features of the input dfframe, and plots bar charts for categorical features of the input dfframe
1 | plot_histograms(df, features, facet_columns = 2)
|
df |
dfFrame that to be used for the plot |
features |
List of string feature names |
facet_columns |
Number of columns in Integer type for facet options |
ggplot object consists of categorical and numeric histograms.
1 2 3 | library(palmerpenguins)
df <- penguins
plot_histograms(df, c("species", "flipper_length_mm", "bill_length_mm", "body_mass_g", "island"), 3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.