Skip to content

Commit a528afd

Browse files
committed
_episodes/13-matplotlib.md: improve 'Plotting with Pandas' section
- edit path to data file - add reminder about file paths.
1 parent 5a030b7 commit a528afd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

_episodes/13-matplotlib.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,12 @@ import pandas as pd
5050

5151
We also need data to work with loaded into a DataFrame and it's helpful to look at a few rows to remember what's there.
5252

53+
We are going to use the dataset from the setup page, `SAFI_full_shortname.csv`. For the data to load, __make sure to
54+
have that file in the same folder where your Jupyter notebook is running.__ If the file is not in that folder, you
55+
are going to have to type the full path.
56+
5357
~~~
54-
df = pd.read_csv("data/SAFI_full_shortname.csv")
58+
df = pd.read_csv("SAFI_full_shortname.csv")
5559
df.head()
5660
~~~
5761
{: .language-python}

0 commit comments

Comments
 (0)