Skip to content

Commit 6d137a4

Browse files
authored
Merge branch 'master' into python-mappings
2 parents e4fb365 + e486b88 commit 6d137a4

File tree

4 files changed

+334
-154
lines changed

4 files changed

+334
-154
lines changed

generators/techcrunch.csv

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1172,10 +1172,10 @@ heavy-com,Heavy.com,,web,New York,NY,1-Mar-01,3000000,USD,a
11721172
spiralfrog,SpiralFrog,15,web,New York,NY,1-Dec-07,2000000,USD,debt_round
11731173
broadbandenterprises,Broadband Enterprises,,web,New York,NY,1-Jan-08,10000000,USD,a
11741174
thumbplay,Thumbplay,,mobile,New York,NY,13-Mar-08,18000000,USD,e
1175-
waterfrontmedia,Waterfront Media,,web,"Brooklyn, New York",NY,1-Sep-07,25000000,USD,d
1176-
waterfrontmedia,Waterfront Media,,web,"Brooklyn, New York",NY,1-Mar-04,4000000,USD,a
1177-
waterfrontmedia,Waterfront Media,,web,"Brooklyn, New York",NY,1-Mar-06,6000000,USD,b
1178-
waterfrontmedia,Waterfront Media,,web,"Brooklyn, New York",NY,1-Apr-07,8000000,USD,c
1175+
waterfrontmedia,Waterfront Media,,web,Brooklyn,NY,1-Sep-07,25000000,USD,d
1176+
waterfrontmedia,Waterfront Media,,web,Brooklyn,NY,1-Mar-04,4000000,USD,a
1177+
waterfrontmedia,Waterfront Media,,web,Brooklyn,NY,1-Mar-06,6000000,USD,b
1178+
waterfrontmedia,Waterfront Media,,web,Brooklyn,NY,1-Apr-07,8000000,USD,c
11791179
tutor,Tutor,55,web,New Yorl,NY,1-May-07,13500000,USD,b
11801180
daylife,Daylife,,web,New York,NY,1-Jun-07,8300000,USD,b
11811181
teachthepeople,Teach The People,1,web,Astoria,NY,1-Jan-07,300000,USD,angel

pivot_tables/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
# How to Create a Pivot Table With pandas
2+
13
These are the three download files you can use with the Real Python tutorial [How to Create a Pivot Table With pandas](https://realpython.com/how-to-pandas-pivot-table/):
24

3-
code_downloads.ipynb contains the main code from the tutorial.
4-
solutions.ipynb contains sample solutions to the various exercises.
5-
sales_data.csv contains the source data used throughout the tutorial.
5+
- `code_downloads.ipynb` contains the main code from the tutorial.
6+
- `solutions.ipynb` contains sample solutions to the various exercises.
7+
- `sales_data.csv` contains the source data used throughout the tutorial.

pivot_tables/code_downloads.ipynb

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"id": "58f1cebe-9313-47be-91a7-a292c721fa70",
66
"metadata": {},
77
"source": [
8-
"**Installing the libraries.**"
8+
"# Installing the libraries"
99
]
1010
},
1111
{
@@ -37,7 +37,7 @@
3737
"id": "809281a1-0122-4332-b39e-7603e11d1f62",
3838
"metadata": {},
3939
"source": [
40-
"**Reading the data.**"
40+
"# Reading the data"
4141
]
4242
},
4343
{
@@ -245,7 +245,7 @@
245245
"id": "6ef0b664-c295-41d2-89c2-33086caee992",
246246
"metadata": {},
247247
"source": [
248-
"**Creating your first pivot table.**"
248+
"# How to create your first pivot table with pandas"
249249
]
250250
},
251251
{
@@ -505,7 +505,7 @@
505505
"id": "5e91d372-b055-4447-a8f8-fe07962867a6",
506506
"metadata": {},
507507
"source": [
508-
"**Including sub-sub columns within your pivot table**"
508+
"# Including sub-columns In your pivot table"
509509
]
510510
},
511511
{
@@ -932,7 +932,7 @@
932932
"id": "5479b18f-1817-4578-9ec9-e4dfaa088537",
933933
"metadata": {},
934934
"source": [
935-
"**Including Sub-Rows Within Your Pivot Table**"
935+
"# Including Sub-Rows In Your Pivot Table"
936936
]
937937
},
938938
{
@@ -1029,7 +1029,7 @@
10291029
"id": "c19c30fc-3253-446a-b2e4-77dd4cc53c36",
10301030
"metadata": {},
10311031
"source": [
1032-
"**Calculating multiple values in your pivot table.**"
1032+
"# Calculating multiple values in your pivot table"
10331033
]
10341034
},
10351035
{
@@ -1513,7 +1513,7 @@
15131513
"id": "c323235b-3479-469e-b6cb-ee08615897d5",
15141514
"metadata": {},
15151515
"source": [
1516-
"**Performing more advanced aggregations.**"
1516+
"# Performing more advanced aggregations"
15171517
]
15181518
},
15191519
{
@@ -1931,7 +1931,7 @@
19311931
"id": "a17481c1-eacb-4c6f-9b6d-889ade86f62f",
19321932
"metadata": {},
19331933
"source": [
1934-
"**Using `.groupby()` and `crosstab()` for Aggregation**"
1934+
"# Using `.groupby()` and `crosstab()` for Aggregation"
19351935
]
19361936
},
19371937
{

0 commit comments

Comments
 (0)