Graph Designer is a simple Python application that allows users to create pie charts, bar charts, scatter plots and line graphs using PySimpleGUI and Matplotlib.
- Create pie charts with custom values and labels.
- Create bar charts with custom x and y values.
- Create scatter plots with custom x and y values.
- Create line graphs with custom x and y values.
- Optional labels for the graphs.
- Input validation to ensure correct number of values for bar charts.
- Clone the repository
It is suggested to use a virtual environment.
python3 -m venv .
to make it,source ./bin/activate
to start it. - Install the required Python libraries:
pip3 install -r requirements.txt
- Run the application:
python3 graphs.py
- Enter values for the pie chart separated by commas.
- Enter labels for the pie chart separated by commas (optional).
- Click on "Create Pie Chart" to generate the pie chart.
- Enter x values for the bar chart,scatter plot or line graph separated by commas.
- Enter y values for them separated by commas.
- Click on the button for the desired graph to generate it.
- more graph types
- more user-friendly input field
- load files
- highlight outliers