Skip to content

Commit a302de8

Browse files
committed
file modifyed
1 parent 5eafb22 commit a302de8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

12.normal_gussian_distribution.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@
2121
import seaborn as sns
2222

2323
# getNomalMatrix = r.normal(size=(2, 3))
24-
getNomalMatrix = r.normal(loc=1, scale=1, size=10)
24+
getNomalMatrix = r.normal(loc=1010, scale=2, size=(1000))
2525

26-
sns.distplot(r.normal(loc=5, scale=1,size=1000), hist=False)
26+
# sns.distplot(r.normal(loc=5, scale=1,size=1000), hist=False)
27+
sns.distplot(r.normal(loc=1010, scale=20, size=(1000)), hist=False)
2728

28-
print('\ngetNomalMatrix: \n',getNomalMatrix)
29+
# print('\ngetNomalMatrix: \n',getNomalMatrix)
2930

3031
plt.show()
3132

0 commit comments

Comments
 (0)