Skip to content

Commit 325637a

Browse files
committed
Change README links to nbviewer
1 parent 431da7c commit 325637a

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

README.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,30 @@ This repository will contain the full listing of IPython notebooks used to creat
1111

1212
---
1313

14-
### [Table of Contents](notebooks/Index.ipynb)
15-
16-
### [Preface](notebooks/00.00-Preface.ipynb)
17-
18-
### [1. IPython: Beyond Normal Python](notebooks/01.00-IPython-Beyond-Normal-Python.ipynb)
19-
- [Help and Documentation in IPython](notebooks/01.01-Help-And-Documentation.ipynb)
20-
- [Keyboard Shortcuts in the IPython Shell](notebooks/01.02-Shell-Keyboard-Shortcuts.ipynb)
21-
- [IPython Magic Commands](notebooks/01.03-Magic-Commands.ipynb)
22-
- [Input and Output History](notebooks/01.04-Input-Output-History.ipynb)
23-
- [IPython and Shell Commands](notebooks/01.05-IPython-And-Shell-Commands.ipynb)
24-
- [Errors and Debugging](notebooks/01.06-Errors-and-Debugging.ipynb)
25-
- [Profiling and Timing Code](notebooks/01.07-Timing-and-Profiling.ipynb)
26-
- [More IPython Resources](notebooks/01.08-More-IPython-Resources.ipynb)
27-
28-
### [2. Introduction to NumPy](notebooks/02.00-Introduction-to-NumPy.ipynb)
29-
- [Understanding Data Types in Python](notebooks/02.01-Understanding-Data-Types.ipynb)
30-
- [The Basics of NumPy Arrays](notebooks/02.02-The-Basics-Of-NumPy-Arrays.ipynb)
31-
- [Computation on NumPy Arrays: Universal Functions](notebooks/02.03-Computation-on-arrays-ufuncs.ipynb)
32-
- [Aggregations: Min, Max, and Everything In Between](notebooks/02.04-Computation-on-arrays-aggregates.ipynb)
33-
- [Computation on Arrays: Broadcasting](notebooks/02.05-Computation-on-arrays-broadcasting.ipynb)
34-
- [Comparisons, Masks, and Boolean Logic](notebooks/02.06-Boolean-Arrays-and-Masks.ipynb)
35-
- [Fancy Indexing](notebooks/02.07-Fancy-Indexing.ipynb)
36-
- [Sorting Arrays](notebooks/02.08-Sorting.ipynb)
37-
- [Structured Data: NumPy's Structured Arrays](notebooks/02.09-Structured-Data-NumPy.ipynb)
14+
### [Table of Contents](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/Index.ipynb)
15+
16+
### [Preface](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/00.00-Preface.ipynb)
17+
18+
### [1. IPython: Beyond Normal Python](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/01.00-IPython-Beyond-Normal-Python.ipynb)
19+
- [Help and Documentation in IPython](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/01.01-Help-And-Documentation.ipynb)
20+
- [Keyboard Shortcuts in the IPython Shell](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/01.02-Shell-Keyboard-Shortcuts.ipynb)
21+
- [IPython Magic Commands](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/01.03-Magic-Commands.ipynb)
22+
- [Input and Output History](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/01.04-Input-Output-History.ipynb)
23+
- [IPython and Shell Commands](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/01.05-IPython-And-Shell-Commands.ipynb)
24+
- [Errors and Debugging](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/01.06-Errors-and-Debugging.ipynb)
25+
- [Profiling and Timing Code](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/01.07-Timing-and-Profiling.ipynb)
26+
- [More IPython Resources](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/01.08-More-IPython-Resources.ipynb)
27+
28+
### [2. Introduction to NumPy](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/02.00-Introduction-to-NumPy.ipynb)
29+
- [Understanding Data Types in Python](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/02.01-Understanding-Data-Types.ipynb)
30+
- [The Basics of NumPy Arrays](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/02.02-The-Basics-Of-NumPy-Arrays.ipynb)
31+
- [Computation on NumPy Arrays: Universal Functions](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/02.03-Computation-on-arrays-ufuncs.ipynb)
32+
- [Aggregations: Min, Max, and Everything In Between](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/02.04-Computation-on-arrays-aggregates.ipynb)
33+
- [Computation on Arrays: Broadcasting](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/02.05-Computation-on-arrays-broadcasting.ipynb)
34+
- [Comparisons, Masks, and Boolean Logic](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/02.06-Boolean-Arrays-and-Masks.ipynb)
35+
- [Fancy Indexing](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/02.07-Fancy-Indexing.ipynb)
36+
- [Sorting Arrays](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/02.08-Sorting.ipynb)
37+
- [Structured Data: NumPy's Structured Arrays](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/02.09-Structured-Data-NumPy.ipynb)
3838

3939
#### 3. Data Manipulation with Pandas *(coming soon)*
4040

0 commit comments

Comments
 (0)