ComeçarComece de graça

Groupby

Groupbys are an incredibly powerful and fast way to perform calculations, transformations, and filter your data. It follows the mantra of split-apply-combine where the dataset is split into multiple partitions based on unique values of a variable or variables, a function is applied on each partition separately, and all the results are combined together at the end.

Este exercício faz parte do curso

Python for R Users

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Mean tip by sex
print(tips____(____)[____].____)
Editar e executar o código