A comprehensive Python library for Exploratory Data Analysis
Project description
Explorytics
Explorytics is a Python library designed to simplify the process of exploratory data analysis (EDA). With an intuitive interface and powerful visualization tools, it provides quick insights into datasets, helping you understand distributions, correlations, and outliers with ease.
Features
- Comprehensive Data Analysis: Perform statistical and visual analysis in a few lines of code.
- Interactive Visualizations: Generate dynamic plots for distributions, correlations, and relationships.
- Outlier Detection: Identify and explore outliers across various features.
- User-Friendly API: Designed for simplicity and ease of use, even for beginners.
Installation
Install Explorytics using pip:
pip install explorytics
Getting Started
Here's a quick example of how to use Explorytics with the Wine dataset from scikit-learn:
# Import required libraries
import pandas as pd
from sklearn.datasets import load_wine
from explorytics import DataAnalyzer
# Load the wine dataset
wine = load_wine()
df = pd.DataFrame(wine.data, columns=wine.feature_names)
df['wine_class'] = wine.target
# Initialize the analyzer
analyzer = DataAnalyzer(df)
# Perform analysis
results = analyzer.analyze()
# Generate a distribution plot
analyzer.visualizer.plot_distribution('alcohol', kde=True).show()
# Generate a correlation heatmap
analyzer.visualizer.plot_correlation_matrix().show()
Documentation
The complete documentation is available here. It includes details on:
- Installation and setup
- Usage examples
- API references for key classes and methods
- Advanced configuration options
Examples
Explore the examples folder for Jupyter notebooks showcasing various use cases, including:
- Basic data exploration
- Advanced feature relationships
- Outlier detection and analysis
Contributing
We welcome contributions! If you'd like to contribute:
- Fork the repository.
- Create a new branch:
git checkout -b feature-name. - Make your changes and commit:
git commit -m 'Add feature name'. - Push to the branch:
git push origin feature-name. - Open a pull request.
Please ensure your code adheres to the existing style and includes tests for any new functionality.
License
Explorytics is licensed under the MIT License. See the LICENSE file for more details.
Acknowledgments
This library was inspired by a course I was pursuing on Coursera: Exploratory Data Analysis for Machine Learning. Special thanks to the open-source community for providing inspiration and support.
Start exploring your data today with Explorytics!
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
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 explorytics-0.1.4.tar.gz.
File metadata
- Download URL: explorytics-0.1.4.tar.gz
- Upload date:
- Size: 51.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f24b2e47d9c5a8f12fa019a4f1e0b4af3d9f35d583264bca80894bdadd830ef9
|
|
| MD5 |
80bddbec82941fde4116a0f32bf0e7a3
|
|
| BLAKE2b-256 |
209be5b736d2215bf02d997b19fb38c39ea368ba9beb7228a717df8074246ae4
|
File details
Details for the file explorytics-0.1.4-py3-none-any.whl.
File metadata
- Download URL: explorytics-0.1.4-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
089622661658265e8d64939a5718c574c332afb3b375b6992938288ed10ce6ca
|
|
| MD5 |
66627ee22b94b53e0754b63b8897e81d
|
|
| BLAKE2b-256 |
aceca5096b865de16621d0edf0ce2b0461a00281ec598471e8975f21aaef9aad
|