You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-6Lines changed: 14 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,31 +3,39 @@ pandas-cookbook
3
3
4
4
Hello!
5
5
6
-
The goal of this cookbook is to give you handholds for using [pandas](http://pandas.pydata.org/), Wes McKinney's fantastic library for data analysis in Python. It explains how to use pandas with practical examples and real-world data.
6
+
The goal of this cookbook is to give you handholds for using
for data analysis in Python. It explains how to use pandas with
9
+
practical examples and real-world data.
7
10
8
-
This is an alpha cookbook! Chapters will be added here as I, you know, write them. Let me know if you have suggestions, or if there are bugs.
11
+
This is an alpha cookbook! Chapters will be added here as I, you know,
12
+
write them. Let me know if you have suggestions, or if there are bugs.
9
13
10
-
It comes with batteries (data) included, so you can try out all the examples right away.
14
+
It comes with batteries (data) included, so you can try out all the
15
+
examples right away.
11
16
12
17
Table of Contents
13
18
=================
14
19
15
-
[Chapter 1: Reading from a CSV](http://nbviewer.ipython.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%201%20-%20Reading%20from%20a%20CSV.ipynb)
20
+
*[Chapter 1: Reading from a CSV](http://nbviewer.ipython.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%201%20-%20Reading%20from%20a%20CSV.ipynb)
16
21
17
22
18
23
19
24
Installation
20
25
============
21
26
22
-
You'll need an up-to-date version of IPython Notebook (>= 1.0) and pandas (>=0.12) for this to work properly
27
+
You'll need an up-to-date version of IPython Notebook (>= 1.0) and
28
+
pandas (>=0.12) for this to work properly
23
29
24
30
You can get these using `pip`:
25
31
26
32
```
27
33
pip install ipython pandas numpy
28
34
```
29
35
30
-
Alternatively, I use and recommend [Anaconda](https://store.continuum.io/), which will give you everything you need. It's free and open source.
36
+
Alternatively, I use and recommend
37
+
[Anaconda](https://store.continuum.io/), which will give you everything
38
+
you need. It's free and open source.
31
39
32
40
Once you have pandas and IPython, you can get going!
0 commit comments