Functions and tools for making Exploratory Data Analysis easy!
Project description
EDAeasy 😀
The package for quick exploratory data analysis
Instalation
pip install EDAeasy
Usage
The dataframe_summary function have relative simple summary of the columns of your dataframe for quick look at tabular data
Generate a summary DataFrame of the input DataFrame 'dataframe'.
Parameters
----------
dataframe : pandas.DataFrame
The input DataFrame for which the summary needs to be generated.
Returns
-------
pandas.DataFrame
A DataFrame containing summary information for each column in 'df':
- Type: Data type of the column.
- Min: Minimum value in the column.
- Max: Maximum value in the column.
- Nan %: Percentage of NaN values in the column.
- # Unique Values: Total number of unique values in the column.
- Unique values: List of unique values in the column.
Example
-------
>>> data = {
'age': ['[40-50)', '[60-70)', '[70-80)'],
'time_in_hospital': [8, 3, 5],
'n_lab_procedures': [72, 34, 45],
...
}
>>> dataframe = pd.DataFrame(data)
>>> result = dataframe_summary(df)
>>> print(result)
Type Min Max Nan % # Unique Values Unique values
Variables
age object [40-50) [90-100) 0.0 3 ['[70-80)', '[50-60)', '[60-70)', '[40-50)', '[80-90)', ...
time_in_hospital int64 1 14 0.0 3 [8, 3, 5]
n_lab_procedures int64 1 113 0.0 3 [72, 34, 45]
...
Note
----
The function uses vectorized operations to improve performance and memory usage.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
edaeasy-1.1.1.tar.gz
(3.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file edaeasy-1.1.1.tar.gz.
File metadata
- Download URL: edaeasy-1.1.1.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.0 Darwin/23.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8f211426082fb0f4f9f7bfcd90a55d3da3e04466da4a2253a1b3c0b1482a457
|
|
| MD5 |
61b1c76d294409c652951903d22c0252
|
|
| BLAKE2b-256 |
b45c89f451cc71d5314f4955d0788b67ac0040318bec6deb1236e6f55279b2e9
|
File details
Details for the file edaeasy-1.1.1-py3-none-any.whl.
File metadata
- Download URL: edaeasy-1.1.1-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.0 Darwin/23.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b77c2d3b80168202ac1164e09bae21e4663943e2107cf4f594d45dbd186c550
|
|
| MD5 |
8e4c997903c25839ec853e6d6543b9c4
|
|
| BLAKE2b-256 |
309edbd99f8302329e7c74365da06f36c34d684b9fadab182ee6633434bd75f2
|