Intelligent Data Visualization - See truth, not just charts. Auto-selects best charts, provides insights, and creates beautiful visualizations.
Project description
📊 InstaViz - Intelligent Data Visualization
See truth, not just charts.
InstaViz is a next-generation Python visualization library built on top of Matplotlib that automatically chooses the best chart type for your data and provides natural language insights.
✨ Features
- 🎯 Smart Auto-Selection
- 📈 Built-in Insights
- 🎨 Beautiful Themes
- 🔍 One-Line EDA
- 📊 Statistical Annotations
- 🚀 Zero Configuration
📦 Installation
pip install instavizlib
🚀 Quick Start
import instaviz as viz
import pandas as pd
import numpy as np
df = pd.DataFrame({
'category': ['A', 'B', 'C', 'D'] * 25,
'value': np.random.randn(100),
'score': np.random.exponential(50, 100)
})
viz.show(df)
viz.plot(df, x='category', y='value')
viz.distribution(df, 'score')
viz.compare(df, x='category', y='value')
viz.correlate(df)
📖 API Reference
| Function | Description |
|---|---|
| viz.show(df) | Automatic EDA |
| viz.plot(df, x, y) | Smart plot |
| viz.distribution(df, column) | Distribution |
| viz.compare(df, x, y) | Comparison |
| viz.trend(df, date, value) | Time series |
| viz.correlate(df) | Correlation |
| viz.relationship(df, x, y) | Relationships |
| viz.target(df, target) | Target analysis |
🎨 Themes
# Available themes: 'dark', 'minimal', 'vibrant', 'corporate'
viz.set_theme('dark')
⚙️ Configuration
viz.set_config(
figsize=(12, 8),
show_insights=True,
auto_annotate=True,
max_categories=20
)
📋 Requirements
- Python >= 3.8
- NumPy >= 1.20
- Pandas >= 1.3
- Matplotlib >= 3.5
- SciPy >= 1.7
👨💻 Author
Md. Ujayer Hasnat
Email: dev.ujayerhasnat@gmail.com
LinkedIn: https://linkedin.com/in/ujayerhasnat
GitHub: https://github.com/CodexUjayer
📄 License
MIT License
⭐ If you find this useful, please give it a star!
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 instavizlib-1.0.3.tar.gz.
File metadata
- Download URL: instavizlib-1.0.3.tar.gz
- Upload date:
- Size: 22.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9ab65a6ab46321ac55663dbfa60be775d9f7d37a924dbb4ed85c670c117c345
|
|
| MD5 |
d14623d1e0c591412d0b23bb320f6a21
|
|
| BLAKE2b-256 |
e4c909a8b54b59a8221dab7258921d56987e2a08b768e744e24d8cb6510dfeed
|
File details
Details for the file instavizlib-1.0.3-py3-none-any.whl.
File metadata
- Download URL: instavizlib-1.0.3-py3-none-any.whl
- Upload date:
- Size: 21.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ffdc7547aef3ec217d08b89b07d0bdf8d23bd6e51d2d1801850712154594789
|
|
| MD5 |
619fc12ac017e608da605a45ed3e3951
|
|
| BLAKE2b-256 |
0396b0083d9a99731cef06a86d91fbf89105d4f20faedb5b1656865c2e1cf60d
|