Description Usage Arguments Value Examples
View source: R/birds_eye_view.R
This function performs high level EDA on all, or a specific set of features displaying 3 different visualization sets: histograms for each numeric variable, a bar chart for each factor type categorical variable, and a correlation heatmap of the numeric variables.
1 | birds_eye_view(df, n = 20, var_list = NULL)
|
df |
A data.frame. The dataframe on which visualizations will be created |
n |
An integer. If passed, it will specify the number of bins for the histograms, defaults to 20 |
var_list |
A vector. If passed, it will limit visualizations to a subset of variables |
a list of the visualization objects generated created by the function
1 2 | library(palmerpenguins)
results <- birds_eye_view(penguins)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.