stats python code example
Example 1: stats.norm.cdf(2,loc=mean, scale=std_dev)
#calculating the probability or the area under curve to the left of this z value
import scipy.stats as stats
stats.norm.pdf(x, loc=mean, scale=std_dev)
# The probability (area) to the right is calculated as (1 - probability to the left)
import scipy.stats as stats
1 - stats.norm.pdf(x, loc=mean, scale=std_dev)
Example 2: python statistics
# Probably the most convenient set of statistics functions are found
# in the Numpy package
# Basic syntax:
import numpy as np
np.mean(your_list) # Calculate mean
np.median() # Calculate median
np.std() # Calculate standard deviation
np.var() # Calculate variance