Skip to content

Commit 3cd31f2

Browse files
Update readme for EuroScipy 2016
1 parent 8e7ff41 commit 3cd31f2

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

README.md

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
1-
# EuroScipy 2015 Pandas Tutorial
1+
# EuroScipy 2016 Pandas Tutorial
22

3-
This repository contains the material (notebooks, data) for the pandas tutorial at EuroScipy 2015.
3+
This repository contains the material (notebooks, data) for the pandas tutorial at EuroScipy 2016. For previous versions of the tutorial (EuroScipy 2015), see the [releases page](https://github.com/jorisvandenbossche/pandas-tutorial/releases).
44

55
## Requirements to run this tutorial
66

77
To follow this tutorial you need to have the following packages installed:
88

9-
10-
- Python version 2.6-2.7 or 3.3-3.4
9+
- Python version 2.6-2.7 or 3.3-3.5
1110
- `pandas` version 0.15.2 or later: http://pandas.pydata.org/
1211
- `numpy` version 1.7 or later: http://www.numpy.org/
1312
- `matplotlib` version 1.3 or later: http://matplotlib.org/
1413
- `ipython` version 3.x with notebook support, or `ipython 4.x` combined with `jupyter`: http://ipython.org
1514
- `seaborn` (this is used for some plotting, but not necessary to follow the tutorial): http://stanford.edu/~mwaskom/software/seaborn/
1615

17-
I recommend to use the [conda](https://store.continuum.io/) environment manager to install all the requirements
16+
I recommend to use the [conda](http://conda.pydata.org/docs/intro.html) environment manager to install all the requirements
1817
(you can install [miniconda](http://conda.pydata.org/miniconda.html) or install the (very large) Anaconda software
1918
distribution, found at http://continuum.io/downloads).
2019

@@ -31,26 +30,26 @@ as you have the above packages installed.
3130

3231
If you have git installed, you can get the material in this tutorial by cloning this repo:
3332

34-
git clone https://github.com/jorisvandenbossche/2015-EuroScipy-pandas-tutorial.git
33+
git clone https://github.com/jorisvandenbossche/pandas-tutorial.git
3534

3635
As an alternative, you can download it as a zip file:
37-
https://github.com/jorisvandenbossche/2015-EuroScipy-pandas-tutorial/archive/master.zip.
36+
https://github.com/jorisvandenbossche/pandas-tutorial/archive/master.zip.
3837
I will probably make some changes until the start of the tutorial, so best to download
3938
the latest version then (or do a `git pull` if you are using git).
4039

41-
Two data files are not included in the repo, you can downloead them from: [`titles.csv`](https://drive.google.com/file/d/0B3G70MlBnCgKa0U4WFdWdGdVOFU/view?usp=sharing) and [`cast.csv`](https://drive.google.com/file/d/0B3G70MlBnCgKRzRmTWdQTUdjNnM/view?usp=sharing) and put them in the `/data` folder.
40+
Two data files are not included in the repo, you can download them from: [`titles.csv`](https://drive.google.com/file/d/0B3G70MlBnCgKa0U4WFdWdGdVOFU/view?usp=sharing) and [`cast.csv`](https://drive.google.com/file/d/0B3G70MlBnCgKRzRmTWdQTUdjNnM/view?usp=sharing) and put them in the `/data` folder.
4241

4342
## Content
4443

4544
To view the content on nbviewer:
4645

47-
- [Index](http://nbviewer.ipython.org/github/jorisvandenbossche/2015-EuroScipy-pandas-tutorial/blob/master/Index.ipynb)
48-
- [01 - Introduction](http://nbviewer.ipython.org/github/jorisvandenbossche/2015-EuroScipy-pandas-tutorial/blob/master/01%20-%20Introduction.ipynb)
49-
- [02 - Data structures](http://nbviewer.ipython.org/github/jorisvandenbossche/2015-EuroScipy-pandas-tutorial/blob/master/02%20-%20Data%20structures.ipynb)
50-
- [03 - Indexing and selecting data](http://nbviewer.ipython.org/github/jorisvandenbossche/2015-EuroScipy-pandas-tutorial/blob/master/03%20-%20Indexing%20and%20selecting%20data.ipynb)
51-
- [03b - Some more advanced indexing](http://nbviewer.ipython.org/github/jorisvandenbossche/2015-EuroScipy-pandas-tutorial/blob/master/03b%20-%20Some%20more%20advanced%20indexing.ipynb)
52-
- [04 - Groupby operations](http://nbviewer.ipython.org/github/jorisvandenbossche/2015-EuroScipy-pandas-tutorial/blob/master/04%20-%20Groupby%20operations.ipynb)
53-
- [05 - Time series data](http://nbviewer.ipython.org/github/jorisvandenbossche/2015-EuroScipy-pandas-tutorial/blob/master/05%20-%20Time%20series%20data.ipynb)
54-
- [06 - Reshaping data](http://nbviewer.ipython.org/github/jorisvandenbossche/2015-EuroScipy-pandas-tutorial/blob/master/06%20-%20Reshaping%20data.ipynb)
46+
- [Index](http://nbviewer.ipython.org/github/jorisvandenbossche/pandas-tutorial/blob/master/Index.ipynb)
47+
- [01 - Introduction](http://nbviewer.ipython.org/github/jorisvandenbossche/pandas-tutorial/blob/master/01%20-%20Introduction.ipynb)
48+
- [02 - Data structures](http://nbviewer.ipython.org/github/jorisvandenbossche/pandas-tutorial/blob/master/02%20-%20Data%20structures.ipynb)
49+
- [03 - Indexing and selecting data](http://nbviewer.ipython.org/github/jorisvandenbossche/pandas-tutorial/blob/master/03%20-%20Indexing%20and%20selecting%20data.ipynb)
50+
- [03b - Some more advanced indexing](http://nbviewer.ipython.org/github/jorisvandenbossche/pandas-tutorial/blob/master/03b%20-%20Some%20more%20advanced%20indexing.ipynb)
51+
- [04 - Groupby operations](http://nbviewer.ipython.org/github/jorisvandenbossche/pandas-tutorial/blob/master/04%20-%20Groupby%20operations.ipynb)
52+
- [05 - Time series data](http://nbviewer.ipython.org/github/jorisvandenbossche/pandas-tutorial/blob/master/05%20-%20Time%20series%20data.ipynb)
53+
- [06 - Reshaping data](http://nbviewer.ipython.org/github/jorisvandenbossche/pandas-tutorial/blob/master/06%20-%20Reshaping%20data.ipynb)
5554

5655

0 commit comments

Comments
 (0)