File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -48,8 +48,11 @@ class ObservableTransformation(str, Enum):
4848 Observable transformations as used in the PEtab observables table.
4949 """
5050
51+ #: No transformation
5152 LIN = C .LIN
53+ #: Logarithmic transformation (natural logarithm)
5254 LOG = C .LOG
55+ #: Logarithmic transformation (base 10)
5356 LOG10 = C .LOG10
5457
5558
@@ -70,7 +73,9 @@ class NoiseDistribution(str, Enum):
7073 Noise distributions as used in the PEtab observables table.
7174 """
7275
76+ #: Normal distribution
7377 NORMAL = C .NORMAL
78+ #: Laplace distribution
7479 LAPLACE = C .LAPLACE
7580
7681
@@ -80,10 +85,15 @@ class PriorType(str, Enum):
8085 Prior types as used in the PEtab parameters table.
8186 """
8287
88+ #: Normal distribution
8389 NORMAL = C .NORMAL
90+ #: Laplace distribution
8491 LAPLACE = C .LAPLACE
92+ #: Uniform distribution
8593 UNIFORM = C .UNIFORM
94+ #: Log-normal distribution
8695 LOG_NORMAL = C .LOG_NORMAL
96+ #: Log-Laplace distribution
8797 LOG_LAPLACE = C .LOG_LAPLACE
8898 PARAMETER_SCALE_NORMAL = C .PARAMETER_SCALE_NORMAL
8999 PARAMETER_SCALE_LAPLACE = C .PARAMETER_SCALE_LAPLACE
You can’t perform that action at this time.
0 commit comments