Skip to content

Commit b9dd3c4

Browse files
committed
fdfit: add docstring to Parameter
without these, the properties don't show up in the docs
1 parent a8283cb commit b9dd3c4

File tree

1 file changed

+53
-4
lines changed

1 file changed

+53
-4
lines changed

lumicks/pylake/fitting/parameters.py

+53-4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@
55

66

77
class Parameter:
8+
"""A single model parameter, usually part of a :class:`Params` dictionary.
9+
10+
Examples
11+
--------
12+
::
13+
14+
import lumicks.pylake as lk
15+
fit = lk.FdFit(lk.ewlc_odijk_distance("my_model"))
16+
17+
print(fit.params) # Prints the model parameters
18+
parameter = fit["my_model/Lc"] = 5 # parameter is of the type `Parameter` here.
19+
20+
# You can extract and/or modify fitting bounds
21+
lower_bound = parameter.lower_bound
22+
23+
# Or read out the fitting error after the model has been fitted.
24+
print(f"fitting error Lc: {parameter.stderr}")
25+
"""
26+
827
__slots__ = [
928
"value",
1029
"lower_bound",
@@ -43,13 +62,44 @@ def __init__(
4362
Unit of the parameter
4463
"""
4564
self.value = value
65+
"""Parameter value."""
66+
4667
self.lower_bound = lower_bound
68+
"""Lower bound used when fitting."""
69+
4770
self.upper_bound = upper_bound
71+
"""Upper bound used when fitting."""
72+
4873
self.fixed = fixed
74+
"""Parameter is held fixed during fitting."""
75+
4976
self.shared = shared
77+
"""Parameter is shared between all sub-models.
78+
79+
Some parameters are not expected to be different between sub-models.
80+
"""
81+
5082
self.unit = unit
83+
"""Unit of this parameter."""
84+
5185
self.profile = None
86+
"""Profile likelihood result.
87+
88+
Profile likelihood estimates confidence intervals for the model parameters. These
89+
confidence intervals can be used to assess whether a parameter can reliably be estimated
90+
from the data. See also: :meth:`~lumicks.pylake.FdFit.profile_likelihood()`.
91+
"""
92+
5293
self.stderr = None
94+
"""Standard error of this parameter.
95+
96+
Standard errors are calculated after fitting the model. These asymptotic errors are based
97+
on the fitted parameter values and model sensitivities.
98+
99+
.. note::
100+
101+
These errors may be inaccurate in the presence of model non-identifiability. See
102+
also: :meth:`~lumicks.pylake.FdFit.profile_likelihood()`."""
53103

54104
def __float__(self):
55105
return float(self.value)
@@ -89,8 +139,7 @@ def ci(self, percentile=0.95, dof=1):
89139

90140

91141
class Params:
92-
"""
93-
Model parameters.
142+
"""A dictionary of :class:`Parameter`.
94143
95144
Examples
96145
--------
@@ -100,8 +149,8 @@ class Params:
100149
fit = lk.FdFit(lk.ewlc_odijk_distance("my_model"))
101150
102151
print(fit.params) # Prints the model parameters
103-
fit["test_parameter"].value = 5 # Set parameter test_parameter to 5
104-
fit["fix_me"].fixed = True # Fix parameter fix_me (do not fit)
152+
fit["my_model/Lc"].value = 5 # Set parameter my_model/Lc to 5
153+
fit["my_model/Lc"].fixed = True # Fix parameter my_model/Lc (do not fit)
105154
106155
# Copy parameters from another Parameters into this one.
107156
parameters.update_params(other_parameters)

0 commit comments

Comments
 (0)