Skip to content

Commit fd4048a

Browse files
committed
Add TOC to README
1 parent eedf6ae commit fd4048a

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

README.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,25 @@ Since pandas is a large library with many different specialist features and func
99

1010
The exercises are loosely divided in sections. Each section has a difficulty rating; these ratings are subjective, of course, but should be a seen as a rough guide as to how elaborate a solution is required.
1111

12-
The official documentation for pandas is very useful and very extensive. Good places get a broader overview of pandas are
12+
| Section Name | Description | Difficulty |
13+
| ------------- | ------------- | ------------- |
14+
| Importing pandas | Getting started and checking your pandas setup | Easy |
15+
| DataFrame basics | A few of the fundamental routines for selecting, sorting, adding and aggregating data in DataFrames | Easy |
16+
| DataFrames: beyond the basics | Slightly trickier: you may need to combine two or more methods to get the right answer | Medium |
17+
| DataFrames: harder problems | These might require a bit of thinking outside the box... | Hard |
18+
| Series and DatetimeIndex | Exercises for creating and manipulating Series with datetime data | Easy/Medium |
19+
| Cleaning Data | Making a DataFrame easier to work with | Easy/Medium |
20+
| Using MultiIndexes | Go beyond flat DataFrames with additional index levels | Medium |
21+
| Minesweeper | Generate the numbers for safe squares in a Minesweeper grid | Hard |
22+
23+
24+
The official documentation for pandas is very useful and very extensive. Good places get a broader overview of pandas are:
1325

1426
- [10 minutes to pandas](http://pandas.pydata.org/pandas-docs/version/0.17.0/10min.html)
1527
- [pandas basics](http://pandas.pydata.org/pandas-docs/version/0.17.0/basics.html)
1628
- [tutorials](http://pandas.pydata.org/pandas-docs/stable/tutorials.html)
1729
- [cookbook and idioms](http://pandas.pydata.org/pandas-docs/version/0.17.0/cookbook.html#cookbook)
1830

19-
\* the list of exercises is not complete! Pull requests or suggestions for additional exercises, corrections and improvements are welcomed.
31+
Good luck solving the puzzles!
32+
33+
\* the list of puzzles is not complete! Pull requests or suggestions for additional exercises, corrections and improvements are welcomed.

0 commit comments

Comments
 (0)