161. SF
161.1. SF (Survival Function)
Probability that a certain event has not occurred by a certain time
Relationship to PDF:
sf.py
from scipy.stats import norm
z = 3.4
mu = 0
sigma = 1
norm.sf(z, loc=mu, scale=sigma)
Probability that a certain event has not occurred by a certain time
Relationship to PDF:
from scipy.stats import norm
z = 3.4
mu = 0
sigma = 1
norm.sf(z, loc=mu, scale=sigma)