Conteúdo do Curso
Introduction to Python for Data Analysis
Introduction to Python for Data Analysis
Max, min, mean, median
To find the max
of the total df
use:
To find the max of the column, use:
The same code is used to find the min
, mean
, and median
.
Pay attention! If there are 2 elements in the middle of the array, the the median will be counted in the following way: (a+b)/2 where a and b are central elements.
Obrigado pelo seu feedback!