Open In App

Python | Scipy stats.halfgennorm.std() method

Last Updated : 06 Feb, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

With the help of stats.halfgennorm.std() method, we can get the value of standard deviation of distribution by using stats.halfgennorm.std() method.

Syntax : stats.halfgennorm.std(beta)
Return : Return the value of standard deviation of distribution.

Example #1 :
In this example we can see that by using stats.halfgennorm.std() method, we are able to get the value of standard deviation of distribution by using this method.




# import halfgennorm
from scipy.stats import halfgennorm
beta = 7
  
# Using stats.halfgennorm.std() method
gfg = halfgennorm.std(beta)
  
print(gfg)


Output :

0.29061475578761414

Example #2 :




# import halfgennorm
from scipy.stats import halfgennorm
beta = 4
  
# Using stats.halfgennorm.std() method
gfg = halfgennorm.std(beta)
  
print(gfg)


Output :

0.31463426591367505


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads