Skip to main content

simple EDA (Exploratory Data Analysis) visuals

Project description

ez-eda overview

  • This library is a collection of simplified functions for visualizing dataframes quickly and easily
  • I started this project after needing more refined heatmaps to understanding correlation

ez correlation plot

from ez_eda import ez_corr_heatmap

This function creates a cleaner seaborn-based heatmap to show correlations between numeric features

Parameters

ez_corr_heatmap(df: pd.DataFrame, color_min: float = None, color_max: float = None, color_center: float = 0)

  • df: input pandas dataframe
  • color_min: minimum value for heatmap scale - defaults to corr() minimum
  • color_max: maximum value for heatmap scale - defaults to corr() maximum
  • color_center: center for heatmap color scale - defaults to midpoint between vmin and vmax

Example Correlation Heatmap Image heatmap

ez 2D PCA Plot

from ez_eda import ez_2d_pca_plot

This function creates a simplified 2D plot of the data in seaborn to show the overall structure

Parameters

ez_2d_pca_plot(df: pd.DataFrame, hue: str = None)

  • df: input pandas dataframe
  • hue: color for scatter plot (Optional)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ez_eda-0.1.3.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

ez_eda-0.1.3-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page