You are viewing a single comment's thread. Return to all comments →
import numpy as np np.random.seed(0) scores = np.random.normal(loc=45, scale=10, size=500) + 10 s = np.std(scores) print(f'{s:0.1f}')
Seems like cookies are disabled on this browser, please enable them to open this website
Standard Deviation Puzzles - 5
You are viewing a single comment's thread. Return to all comments →