Reading data
We are going to use code to read in data from our box experiments and plot it.
Read the lesson in the computing-tutorial on CSV files.
You have access to two files
2016-02-16-combined.csv
2016-02-26-combined.csv
Go to the file browser and click on the file. You can see what it looks like inside.
Loading data
We are going to do the following.
Load in a data file using the
pd.read_csv(filename)command. Note that you have to put the filename between quotes for the computer.Place this in a variable named data.
Understand what the columns of data are.
Plot the data.
Calculate some statistics about the data.
Calculate a difference in temperature from the data.
Conceptual questions
What does it mean to load a data file?
What does the computer do when it plots your data?
How does the computer calculate statistics?