Skip to content

Commit c8dc960

Browse files
committed
Data not data folder
1 parent 47a64bc commit c8dc960

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_episodes/02-data-wrangling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ We will start by importing pandas and reading in our data file. We can call the
4646

4747
~~~
4848
import pandas as pd
49-
df = pd.read_csv("data/gapminder_all.csv")
49+
df = pd.read_csv("Data/gapminder_all.csv")
5050
df
5151
~~~
5252
{: .language-python}

_episodes/03-create-visualizations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ First, we need to import pandas and Plotly Express, and then read in our datafra
2323
import pandas as pd
2424
import plotly.express as px
2525
26-
df = pd.read_csv("data/gapminder_tidy.csv")
26+
df = pd.read_csv("Data/gapminder_tidy.csv")
2727
df
2828
~~~
2929
{: .language-python}

0 commit comments

Comments
 (0)