Setting up a .groupby() statement
The gender wage gap is a hot-topic item in the United States and across the world. Using the adult census income dataset, loaded as adult, you want to check if some of the recently published data lines up with this income survey.
Bu egzersiz
Working with Categorical Data in Python
kursunun bir parçasıdırEgzersiz talimatları
- Split the
adultdataset across the"Sex"and"Above/Below 50k"columns, saving this object asgb. - Print out the number of observations found in each group.
- Using
gb, find the average of each numerical column.
Uygulamalı interaktif egzersiz
Bu örnek kodu tamamlayarak bu egzersizi bitirin.
# Group the adult dataset by "Sex" and "Above/Below 50k"
gb = adult.____
# Print out how many rows are in each created group
print(____)
# Print out the mean of each group for all columns
print(____)