Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Челендж | Дисперсія та Стандартне Відхилення
Вивчення Статистики з Використанням Python

book
Челендж

Завдання
test

Swipe to show code editor

Обчисліть дисперсію та середньоквадратичне відхилення стовпчика 'salary' за допомогою бібліотеки pandas.

Рішення

# Import library
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 variance
var = df['salary'].var()
# Calculate the standard deviation
std = df['salary'].std()

print('The variace is', round(var, 2))
print('The standard deviation is', round(std, 2))
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 3. Розділ 6
# Import library
___

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 variance
var = ___
# Calculate the standard deviation
std = ___

print('The variace is', round(var, 2))
print('The standard deviation is', round(std, 2))
toggle bottom row
some-alt