https://github.com/johndev19/data-visualization-tool
A Python-based application for generating various types of charts and graphs from user-input data.
https://github.com/johndev19/data-visualization-tool
charts matplotlib numpy python visualization
Last synced: 5 months ago
JSON representation
A Python-based application for generating various types of charts and graphs from user-input data.
- Host: GitHub
- URL: https://github.com/johndev19/data-visualization-tool
- Owner: JohnDev19
- License: mit
- Created: 2024-07-22T22:04:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-23T01:59:57.000Z (over 1 year ago)
- Last Synced: 2025-01-30T06:27:34.432Z (about 1 year ago)
- Topics: charts, matplotlib, numpy, python, visualization
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Data Visualization Tool
A Python-based application for generating various types of charts and graphs from user-input data.
## Features
- Create multiple types of visualizations:
- Bar Charts
- Line Charts
- Scatter Plots
- Pie Charts
- Histograms
- User-friendly command-line interface
- Supports manual data input
- Option to load data from CSV and JSON files
- Customizable chart appearance
## Requirements
- Python 3.x
- matplotlib
- numpy
## Installation
1. Clone this repository:
```
git clone https://github.com/JohnDev19/Data-Visualization-Tool.git
```
2. Navigate to the project directory:
```
cd Data-Visualization-Tool
```
3. Install the required packages:
```
pip install -r requirements.txt
```
## Usage
Run the main script:
```
python main.py
```
Follow the on-screen prompts to select the type of chart and input your data.
## File Structure
- `main.py`: Entry point of the application
- `visualizer.py`: Contains the Visualizer class for creating charts
- `data_handler.py`: Handles data input and processing
- `ui.py`: Manages the user interface
- `config.py`: Stores configuration settings
## Customization
You can customize the appearance of the charts by modifying the `config.py` file. Adjust the `FIGURE_SIZE` variable to change the size of the generated charts.
## Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.