CPS 412 Data Analysis Project
Main files are in the assignment_FINAL folder
Before running the scripts, these modules must be installed: pandas matplotlib numpy csv (works without it sometimes)
To install these modules, simply go to terminal (on Mac or Linux) or Command Promt (On Windows) and run: pip install module_name
Please MAXIMIZE or FULLSCREEN all windows after you run the scripts to get the best format.
Which scripts to run:
barGraph.py pies2.py tables3.py
How to run:
Easiest Way to run is to use VSCode:
- Install the JUPYTER EXTENTION form the extentions store
- Run the scripts using the JUPYTER EXTENTION on VSCode
If it doesn't work or you don't want to use VSCode, use the following method:
Windows 11:
- Go to the directory where the scripts are extracted
- Right click on the directory and open Terminal
- Run the script using this command: python3 script_name.py
Windows 10:
- Go to the directory where the script is extracted
- Copy the path of the directory from the top of the window
- Open Command Promt or Terminal
- Type and run: cd FOLDER_PATH
- Run the scripts using this command: python3 script_name.py
Mac and Linux:
- Open terminal
- change directory to where the scripts are located using this command: cd FOLDER_PATH
- Run the scripts using this command: python3 script_name.py
Note: The scripts can be ran other IDEs but I ran into some issues sometimes. VSCode Jupyter or Terminal/Command Promt is more reliable.