Skip to content

Commit

Permalink
Fixing typos, thanks to attentive students
Browse files Browse the repository at this point in the history
  • Loading branch information
nathancarter committed Mar 26, 2020
1 parent fb93ecf commit 3e0ae70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pivot-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
</head>
<body>
<h1>Pivot Table</h1>
<pre>df.pivot_table( index=["First","Last"], columns="Sale", aggfunc="sum" )</pre>
<pre>df.pivot_table( index=["First","Last"], columns="Customer", values="Sale", aggfunc="sum" )</pre>
<hr/>
</body>
</html>
2 changes: 1 addition & 1 deletion pivot.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
</head>
<body>
<h1>Pivot</h1>
<pre>df.pivot( index="Name", columns="Day", values="Sales" )</pre>
<pre>df.pivot( index=["First","Last"], columns="Day", values="Sales" )</pre>
<hr/>
</body>
</html>

0 comments on commit 3e0ae70

Please sign in to comment.