We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a030b7 commit a528afdCopy full SHA for a528afd
_episodes/13-matplotlib.md
@@ -50,8 +50,12 @@ import pandas as pd
50
51
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.
52
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
+
57
~~~
-df = pd.read_csv("data/SAFI_full_shortname.csv")
58
+df = pd.read_csv("SAFI_full_shortname.csv")
59
df.head()
60
61
{: .language-python}
0 commit comments