Челендж
Завдання
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))