A Python package for data analysis and visualization using Pandas, NumPy, Matplotlib, and Seaborn.
Project description
vijjupyds 📊
vijjupyds is a lightweight and easy-to-use Python library built to accelerate Exploratory Data Analysis (EDA) and preliminary dataset inspection for data science projects. It wraps essential Pandas, NumPy, Seaborn, and Matplotlib utilities to help you quickly understand the structure, quality, and relationships within your dataset.
✨ Features
- ✅ Quick DataFrame summary: shape, datatypes, missing values, and statistics
- ✅ Visualize correlation matrix with heatmaps
- ✅ Detect outliers using the IQR method
- ✅ Plot numeric feature distributions
- ✅ Report missing values as proportions
- ✅ Get value counts for all categorical columns
📦 Installation
bash pip install vijjupyds
Since this is a custom library, clone or copy the source code into your project directory or package it using setuptools if needed.
bash
Clone this repository or include the file directly
git clone https://github.com/vijayagiduthuri/vijjupyds.git
In your Python project:
from vijjupyds import df_summary, missing_report, correlation_matrix, outlier_summary, plot_distributions, value_counts_all
🧪 How to Use
- df_summary(df) Provides an overall summary of the DataFrame including shape, data types, missing values, and descriptive statistics.
import pandas as pd from vijjupyds import df_summary
df = pd.read_csv("your_data.csv") df_summary(df)
- missing_report(df) Returns a Series with the proportion of missing values in each column (sorted descending).
from vijjupyds import missing_report
missing_report(df)
- correlation_matrix(df) Plots a heatmap of correlation coefficients for all numeric features in the DataFrame.
from vijjupyds import correlation_matrix
correlation_matrix(df)
- outlier_summary(df) Returns a count of outliers per numeric column using the IQR method.
from vijjupyds import outlier_summary
outlier_summary(df)
- plot_distributions(df) Displays histograms of all numeric columns in the DataFrame.
from vijjupyds import plot_distributions
plot_distributions(df)
- value_counts_all(df) Returns a dictionary with value counts for all object (categorical) columns.
from vijjupyds import value_counts_all
value_counts_all(df)
🧑💻 Developer Vijaya Giduthuri Artificial Intelligence & Data Science | ML & Web Dev Enthusiast
📜 License This project is licensed under the MIT License. Feel free to use and modify!
🙌 Contributing Pull requests are welcome. For major changes, please open an issue first to discuss what you'd like to change.
🧠 Future Features Advanced outlier detection (Z-score, Isolation Forest)
Interactive plots using Plotly
Automatic report generation using pandas-profiling or sweetviz
Let me know if you'd like help setting this up as a proper Python package
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
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 vijjupyds-0.1.tar.gz.
File metadata
- Download URL: vijjupyds-0.1.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2203c09179abd267c8bb87985f13f9ce5d693a9cc1d1ee3f76684fe0427f1e0d
|
|
| MD5 |
2b680a027e31bbd67737e625453f515c
|
|
| BLAKE2b-256 |
aea84a099ee0afb4c63b262707beb8398d54abf584d7045f2bb1b6cb476fc06d
|
File details
Details for the file vijjupyds-0.1-py3-none-any.whl.
File metadata
- Download URL: vijjupyds-0.1-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2c1a1364202a2650dbe4ed6558f9a08be2cad18e462b13891cc13036f601f05
|
|
| MD5 |
41efecec6e77de14c548ceada076893a
|
|
| BLAKE2b-256 |
94627178b18f17a6bba721e3b2432a790f4841245f83cfd85c96395e1d20d1e1
|