Skip to content

Latest commit

 

History

History
39 lines (22 loc) · 1.46 KB

README.md

File metadata and controls

39 lines (22 loc) · 1.46 KB

Project 3

If you haven't already, please read project notes.

Goal: Generate your own data.csv file.

In this example, I will be showing you how to create the data.csv file from projects 1 and 2.

Project Setup:

  • Open a terminal window
  • Navigate to the project directory: cd ~/STBS/Python/Projects/project3
  • Run the Project Setup Script: source work_here.sh

Exercises:

  • Read all of the code and comments in Project 3
  • Run Project 3
  • Follow the numpy quickstart guide to create more interesting data to plot.

Resources for the exercises:

Pandas plot function (for dataframes) API entry

Plotting with matplotlib.pyplot

Other Resources:

The Python Tutorial

Pandas read_csv function API entry

Pandas to_csv function API entry

Python Dictionaries