Skip to content

Commit 3b1c3d6

Browse files
committed
Fix nbviewer links
1 parent 7ed4b00 commit 3b1c3d6

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,25 +27,25 @@ Table of Contents
2727
=================
2828

2929

30-
* [A quick tour of the Jupyter Notebook](http://nbviewer.jupyter.org/github/jvns/pandas-cookbook/blob/master/cookbook/A%20quick%20tour%20of%20%20Notebook.ipynb)
30+
* [A quick tour of the Jupyter Notebook](https://nbviewer.org/github/jvns/pandas-cookbook/blob/master/cookbook/A%20quick%20tour%20of%20%20Notebook.ipynb)
3131
<br> Shows off Jupyter's awesome tab completion and magic functions.
32-
* [Chapter 1: Reading from a CSV](http://nbviewer.jupyter.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%201%20-%20Reading%20from%20a%20CSV.ipynb)
32+
* [Chapter 1: Reading from a CSV](https://nbviewer.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%201%20-%20Reading%20from%20a%20CSV.ipynb)
3333
<br> Reading your data into pandas is pretty much the easiest thing. Even when the encoding is wrong!
34-
* [Chapter 2: Selecting data & finding the most common complaint type](http://nbviewer.jupyter.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%202%20-%20Selecting%20data%20&%20finding%20the%20most%20common%20complaint%20type.ipynb)
34+
* [Chapter 2: Selecting data & finding the most common complaint type](https://nbviewer.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%202%20-%20Selecting%20data%20&%20finding%20the%20most%20common%20complaint%20type.ipynb)
3535
<br>It's not totally obvious how to select data from a pandas dataframe. Here I explain the basics (how to take slices and get columns)
36-
* [Chapter 3: Which borough has the most noise complaints? (or, more selecting data)](http://nbviewer.jupyter.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%203%20-%20Which%20borough%20has%20the%20most%20noise%20complaints%20%28or%2C%20more%20selecting%20data%29.ipynb)
36+
* [Chapter 3: Which borough has the most noise complaints? (or, more selecting data)](https://nbviewer.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%203%20-%20Which%20borough%20has%20the%20most%20noise%20complaints%20%28or%2C%20more%20selecting%20data%29.ipynb)
3737
<br>Here we get into serious slicing and dicing and learn how to filter dataframes in complicated ways, really fast.
38-
* [Chapter 4: Find out on which weekday people bike the most with groupby and aggregate](http://nbviewer.jupyter.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%204%20-%20Find%20out%20on%20which%20weekday%20people%20bike%20the%20most%20with%20groupby%20and%20aggregate.ipynb)
38+
* [Chapter 4: Find out on which weekday people bike the most with groupby and aggregate](https://nbviewer.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%204%20-%20Find%20out%20on%20which%20weekday%20people%20bike%20the%20most%20with%20groupby%20and%20aggregate.ipynb)
3939
<br> The groupby/aggregate is seriously my favorite thing about pandas and I use it all the time. You should probably read this.
40-
* [Chapter 5: Combining dataframes and scraping Canadian weather data](http://nbviewer.jupyter.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%205%20-%20Combining%20dataframes%20and%20scraping%20Canadian%20weather%20data.ipynb)
40+
* [Chapter 5: Combining dataframes and scraping Canadian weather data](https://nbviewer.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%205%20-%20Combining%20dataframes%20and%20scraping%20Canadian%20weather%20data.ipynb)
4141
<br>Here you get to find out if it's cold in Montreal in the winter (spoiler: yes). Web scraping with pandas is fun!
42-
* [Chapter 6: String operations! Which month was the snowiest?](http://nbviewer.jupyter.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%206%20-%20String%20Operations-%20Which%20month%20was%20the%20snowiest.ipynb)
42+
* [Chapter 6: String operations! Which month was the snowiest?](https://nbviewer.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%206%20-%20String%20Operations-%20Which%20month%20was%20the%20snowiest.ipynb)
4343
<br> Strings with pandas are great. It has all these vectorized string operations and they're the best. We will turn a bunch of strings containing "Snow" into vectors of numbers in a trice.
44-
* [Chapter 7: Cleaning up messy data](http://nbviewer.jupyter.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%207%20-%20Cleaning%20up%20messy%20data.ipynb)
44+
* [Chapter 7: Cleaning up messy data](https://nbviewer.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%207%20-%20Cleaning%20up%20messy%20data.ipynb)
4545
<br> Cleaning up messy data is never a joy, but with pandas it's easier &lt;3
46-
* [Chapter 8: Parsing Unix timestamps](http://nbviewer.jupyter.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%208%20-%20How%20to%20deal%20with%20timestamps.ipynb)
46+
* [Chapter 8: Parsing Unix timestamps](https://nbviewer.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%208%20-%20How%20to%20deal%20with%20timestamps.ipynb)
4747
<br> This is basically a quick trick that took me 2 days to figure out.
48-
* [Chapter 9 - Loading data from SQL databases](http://nbviewer.jupyter.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%209%20-%20Loading%20data%20from%20SQL%20databases.ipynb)
48+
* [Chapter 9 - Loading data from SQL databases](https://nbviewer.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%209%20-%20Loading%20data%20from%20SQL%20databases.ipynb)
4949
<br> How to load data from an SQL database into Pandas, with examples using SQLite3, PostgreSQL, and MySQL.
5050

5151
How to use this cookbook

0 commit comments

Comments
 (0)