|
Biogeme: Python Library
2.5
|
Functions | |
| def | distributions.normalpdf (x, mu=0.0, s=1.0) |
| Normal pdf. More... | |
| def | distributions.lognormalpdf (x, mu, s) |
| Log normal pdf. More... | |
| def | distributions.uniformpdf (x, a=-1, b=1.0) |
| Uniform pdf. More... | |
| def | distributions.triangularpdf (x, a=-1.0, b=1.0, c=0.0) |
| Triangular pdf. More... | |
| def | distributions.logisticcdf (x, mu=0.0, s=1.0) |
| Logistic CDF. More... | |
| def distributions.logisticcdf | ( | x, | |
mu = 0.0, |
|||
s = 1.0 |
|||
| ) |
Logistic CDF.
Cumulative distribution function of a logistic distribution
| x | argument of the pdf |
| mu | location parameter (Default: 0) |
| s | scale parameter (Default: 1) |
, but it is not verified by the code. Definition at line 74 of file distributions.py.
| def distributions.lognormalpdf | ( | x, | |
| mu, | |||
| s | |||
| ) |
Log normal pdf.
Probability density function of a log normal distribution
| x | argument of the pdf |
| mu | location parameter (Default: 0) |
| s | scale parameter (Default: 1) |
, but it is not verified by the code. Definition at line 32 of file distributions.py.
| def distributions.normalpdf | ( | x, | |
mu = 0.0, |
|||
s = 1.0 |
|||
| ) |
Normal pdf.
Probability density function of a normal distribution
| x | argument of the pdf |
| mu | location parameter (Default: 0) |
| s | scale parameter (Default: 1) |
, but it is not verified by the code. Definition at line 15 of file distributions.py.
| def distributions.triangularpdf | ( | x, | |
a = -1.0, |
|||
b = 1.0, |
|||
c = 0.0 |
|||
| ) |
Triangular pdf.
Probability density function of a triangular distribution
| x | argument of the pdf |
| a | lower bound of the distribution (Default: -1) |
| b | upper bound of the distribution (Default: 1) |
| c | mode of the distribution (Default: 0) |
, and
, but it is not verified by the code. Definition at line 62 of file distributions.py.
| def distributions.uniformpdf | ( | x, | |
a = -1, |
|||
b = 1.0 |
|||
| ) |
Uniform pdf.
Probability density function of a uniform distribution
| x | argument of the pdf |
| a | lower bound of the distribution (Default: -1) |
| b | upper bound of the distribution (Default: 1) |
, but it is not verified by the code. Definition at line 49 of file distributions.py.