Skip to content

Commit 9d545e9

Browse files
committed
..
1 parent 9f3c367 commit 9d545e9

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

petab/v2/core.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,11 @@ class ObservableTransformation(str, Enum):
4949
Observable transformations as used in the PEtab observables table.
5050
"""
5151

52+
#: No transformation
5253
LIN = C.LIN
54+
#: Logarithmic transformation (natural logarithm)
5355
LOG = C.LOG
56+
#: Logarithmic transformation (base 10)
5457
LOG10 = C.LOG10
5558

5659

@@ -71,7 +74,9 @@ class NoiseDistribution(str, Enum):
7174
Noise distributions as used in the PEtab observables table.
7275
"""
7376

77+
#: Normal distribution
7478
NORMAL = C.NORMAL
79+
#: Laplace distribution
7580
LAPLACE = C.LAPLACE
7681

7782

@@ -81,10 +86,15 @@ class PriorType(str, Enum):
8186
Prior types as used in the PEtab parameters table.
8287
"""
8388

89+
#: Normal distribution
8490
NORMAL = C.NORMAL
91+
#: Laplace distribution
8592
LAPLACE = C.LAPLACE
93+
#: Uniform distribution
8694
UNIFORM = C.UNIFORM
95+
#: Log-normal distribution
8796
LOG_NORMAL = C.LOG_NORMAL
97+
#: Log-Laplace distribution
8898
LOG_LAPLACE = C.LOG_LAPLACE
8999
PARAMETER_SCALE_NORMAL = C.PARAMETER_SCALE_NORMAL
90100
PARAMETER_SCALE_LAPLACE = C.PARAMETER_SCALE_LAPLACE

0 commit comments

Comments
 (0)