A simple command-line Data Visualizer built using Python. This project helps you visualize CSV data through interactive charts with a colorful CLI interface powered by Matplotlib and Seaborn.
- Visualize sales trends over time with a line chart
- Compare total sales by product with a bar chart
- Analyze profit vs sales correlation with a scatter plot
- Colorful CLI output for better readability
pip install laypatel13-data-visualizerThen run it from anywhere in your terminal:
data-visualizergit clone https://github.com/laypatel13/data-visualizer.git
cd data-visualizer
pip install -r requirements.txt
pip install -e .Then run:
data-visualizerdata-visualizer/
├── data_visualizer/
│ ├── __init__.py
│ └── main.py
├── sample-data.csv
├── pyproject.toml
├── requirements.txt
└── README.md
- Used Pandas for data loading and processing.
- Used Matplotlib for chart rendering.
- Used Seaborn for styled visualizations.
- Used Colorama for colored terminal output.