A command-line application built with Python for visualizing data from CSV and Excel files using Pandas and Matplotlib.
- Python 3
- pandas
- matplotlib
- openpyxl
Install dependencies:
pip install pandas matplotlib openpyxl- Bar Chart
- Line Chart
- Pie Chart
- CSV and Excel support
- Single or multiple data comparison
- Custom chart title, labels, and colors
Run the application:
python LatihanMatplotlib.pyPlace your .csv or .xlsx file in the same directory as the program, then follow the prompts displayed in the terminal.
Bar Chart / Line Chart
| Category | Value 1 | Value 2 |
|---|---|---|
| A | 10 | 15 |
| B | 20 | 25 |
| C | 30 | 35 |
Pie Chart
| Category | Value |
|---|---|
| A | 20 |
| B | 35 |
| C | 45 |
- Column names are case-sensitive.
- Pie Chart supports one label column and one numeric value column.
- CSV and Excel files should be located in the same directory as the application.
This project is intended for learning purposes and personal use.