numeric_edahelper.overview

Module Contents

Functions

overview(data, quiet=False)

Gives a statistical overview of the input data.

numeric_edahelper.overview.overview(data, quiet=False)[source]

Gives a statistical overview of the input data. Returns a pandas.DataFrame of descriptive statistical values.

Parameters
  • data (pandas.DataFrame) – Input data to be summarized.

  • quiet (bool, default ‘False’) – Boolean value corresponding to showing output of the function. Used for acquiring variables.

Returns

DataFrame holding all calculated values.

Return type

pandas.DataFrame

Examples

>>> import pandas as pd
>>> import numpy as np
>>> overview(dataframe, quiet=False)