Skip to content

Commit c837e4d

Browse files
authored
Merge pull request #495
Change IPython Notebook to Jupyter Notebook
2 parents 3bb52dc + 41e496c commit c837e4d

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

_episodes/02-starting-with-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ and they can replicate the same analysis.
3737

3838
To help the lesson run smoothly, let's ensure everyone is in the same directory.
3939
This should help us avoid path and file name issues. At this time please
40-
navigate to the workshop directory. If you are working in IPython Notebook be sure
40+
navigate to the workshop directory. If you are working in Jupyter Notebook be sure
4141
that you start your notebook in the workshop directory.
4242

4343
A quick aside that there are Python libraries like [OS Library][os-lib] that can work with our

_episodes/06-loops-and-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ yearly_data_csv_writer(1977, 2002, surveys_df)
453453
~~~
454454
{: .language-python}
455455

456-
BEWARE! If you are using IPython Notebooks and you modify a function, you MUST
456+
BEWARE! If you are using Jupyter Notebooks and you modify a function, you MUST
457457
re-run that cell in order for the changed function to be available to the rest
458458
of the code. Nothing will visibly happen when you do this, though, because
459459
defining a function without *calling* it doesn't produce an output. Any

_episodes/08-putting-it-all-together.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ either a shell script or Python to do this - you wouldn't want to do it by hand
4747
if you had many files to process.
4848

4949
If you are still having trouble importing the data as a table using Pandas,
50-
check the documentation. You can open the docstring in an ipython notebook using
50+
check the documentation. You can open the docstring in a Jupyter Notebook using
5151
a question mark. For example:
5252

5353
~~~
@@ -335,7 +335,7 @@ which will save the `fig` created using Pandas/matplotlib as a png file with the
335335
336336
Matplotlib can make many other types of plots in much the same way that it makes two-dimensional line plots. Look through the examples in
337337
<http://matplotlib.org/users/screenshots.html> and try a few of them (click on the
338-
"Source code" link and copy and paste into a new cell in ipython notebook or
338+
"Source code" link and copy and paste into a new cell in Jupyter Notebook or
339339
save as a text file with a `.py` extension and run in the command line).
340340
341341
> ## Challenge - Final Plot

0 commit comments

Comments
 (0)