SciPy - Statistical Functions (scipy.stats) Basics
Identify the error in the following code:
from scipy.stats import norm samples = norm.rvs(5, size=10) print(samples)
from scipy.stats import norm samples = norm.rvs(5, size=10) print(samples)
norm.rvs(5, size=10) passes 5 as positional loc=5, scale defaults to 1, size=10 is keyword.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions