Curriculum
Course: Data Science
Login

Curriculum

Data Science

Text lesson

Use Python to Find the Variance of health_data

We can use the var() function from NumPy to calculate the variance (using the first data set with 10 observations).

Example

import numpy as np

var = np.var(health_data)
print(var)

The output:

img_stat_var

Use Python to Find the Variance of Full Data Set

Here, we calculate the variance for each column in the full data set.

Example

import numpy as np

var_full = np.var(full_health_data)
print(var_full)

The output:

img_stat_var_full