Skip to content

Commit bab4cd7

Browse files
updated solutions to lecture 8
1 parent 09b38c3 commit bab4cd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

part-08/lecture-pandas.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ Note, that we can use the `mean()` method on the `Salary` column, as it is a num
240240
#| eval: true
241241
#| output-location: slide
242242
df = pd.read_csv("data/employees.csv")
243-
df.groupby(['Position']).sum() # Mean per position
243+
df.groupby(['Position']).sum() # Sum per position
244244
```
245245

246246
## Grouping Numeric Columns

0 commit comments

Comments
 (0)