Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprende Calculating Mean and Median Values with Python | Section
Statistics for Data Analysis

bookCalculating Mean and Median Values with Python

Desliza para mostrar el menú

You're already familiar with the mean and median. Now it's time to calculate them using Python. Start by importing the numpy library using the np alias:

import numpy as np

Use the .mean() and .median() functions to compute the mean and median values. Here's a code example, feel free to modify the columns and observe the results:

12345678910111213
# Import library import numpy as np import pandas as pd df = pd.read_csv('https://codefinity-content-media.s3.eu-west-1.amazonaws.com/a849660e-ddfa-4033-80a6-94a1b7772e23/update/ds_salaries_statistics', index_col = 0) # Calculate the mean value mean = np.mean(df['salary_in_usd']) # Calculate the median value median = np.median(df['salary_in_usd']) print('The mean value is', mean) print('The median value is', median)
copy
question mark

Which functions can you use to calculate the mean and median values of a column in a pandas DataFrame using numpy?

Select all correct answers

¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 1. Capítulo 10

Pregunte a AI

expand

Pregunte a AI

ChatGPT

Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla

Sección 1. Capítulo 10
some-alt