Skip to content

Commit 429eb68

Browse files
committed
2.15
1 parent 423f3a8 commit 429eb68

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import numpy as np
2+
3+
random_arr = np.random.random(size=1000)
4+
mean = np.mean(random_arr)
5+
standard_deviation = np.std(random_arr)
6+
print(mean, standard_deviation)
7+
8+
other_arr = np.random.normal(size=1000)
9+
mean = np.mean(other_arr)
10+
standard_deviation = np.std(other_arr)
11+
print(mean, standard_deviation)

0 commit comments

Comments
 (0)