EDA

EDA plots using the BikeSharing dataset as example.

Experiment initialization and data preparation

from piml import Experiment

exp = Experiment()
exp.data_loader(data="BikeSharing", silent=True)

histogram-density plot

exp.eda(show='univariate', uni_feature='cnt', figsize=(5, 4))
plot 2 data eda

bar plot

exp.eda(show='univariate', uni_feature='yr', figsize=(5, 4))
plot 2 data eda

scatter plot

exp.eda(show='bivariate', bi_features=['temp', 'cnt'], figsize=(5, 4))
plot 2 data eda

box plot

exp.eda(show='bivariate', bi_features=['hr', 'season'], figsize=(5, 4))
plot 2 data eda

stack bar plot

exp.eda(show='bivariate', bi_features=['yr', 'season'], figsize=(5, 4))
plot 2 data eda

correlation heatmap

exp.eda(show='multivariate', multi_type='correlation_heatmap', figsize=(6, 5))
plot 2 data eda

correlation graph

exp.eda(show='multivariate', multi_type='correlation_graph', figsize=(6, 5))
Correlation Cut-off at 0.20

Total running time of the script: ( 0 minutes 55.352 seconds)

Estimated memory usage: 24 MB

Gallery generated by Sphinx-Gallery