Q:

Write a NumPy program to create a random array with 1000 elements and compute the average, variance, standard deviation of the array elements

0

Write a NumPy program to create a random array with 1000 elements and compute the average, variance, standard deviation of the array elements.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import numpy as np
x = np.random.randn(1000)
print("Average of the array elements:")
mean = x.mean()
print(mean)
print("Standard deviation of the array elements:")
std = x.std()
print(std)
print("Variance of the array elements:")
var = x.var()
print(var)

Sample Output:

Average of the array elements:                                         
-0.0255137240796                                                       
Standard deviation of the array elements:                              
0.984398282476                                                         
Variance of the array elements:                                        
0.969039978542

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now