Max, min, mean, median
Desliza para mostrar el menú




To find the max of the total df use:
df.max()
To find the max of the column, use:
df['column_name'].max()
# or
df.column_name.max()
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.
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 3. Capítulo 5
Pregunte a AI
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla
Sección 3. Capítulo 5