diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2021-03-09 17:35:47 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2021-03-09 17:35:47 +0100 |
commit | c73b2f30ec836c949885784ab576e814eb8070a9 (patch) | |
tree | 7cfff70c5dae646fb464f4071e4ec444bbf40de1 /man/nlme.Rd | |
parent | 9a414d01985f9177745ce0ad234ef7fc1b9822bb (diff) |
Some improvements for borderline cases
- fit_with_errors for saem()
- test_log_parms for mean_degparms() and saem()
Diffstat (limited to 'man/nlme.Rd')
-rw-r--r-- | man/nlme.Rd | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/man/nlme.Rd b/man/nlme.Rd index 307cca82..c367868b 100644 --- a/man/nlme.Rd +++ b/man/nlme.Rd @@ -8,7 +8,7 @@ \usage{ nlme_function(object) -mean_degparms(object, random = FALSE) +mean_degparms(object, random = FALSE, test_log_parms = FALSE, conf.level = 0.6) nlme_data(object) } @@ -16,6 +16,13 @@ nlme_data(object) \item{object}{An mmkin row object containing several fits of the same model to different datasets} \item{random}{Should a list with fixed and random effects be returned?} + +\item{test_log_parms}{If TRUE, log parameters are only considered in +the mean calculations if their untransformed counterparts (most likely +rate constants) pass the t-test for significant difference from zero.} + +\item{conf.level}{Possibility to adjust the required confidence level +for parameter that are tested if requested by 'test_log_parms'.} } \value{ A function that can be used with nlme @@ -60,7 +67,7 @@ grouped_data <- nlme_data(f) nlme_f <- nlme_function(f) # These assignments are necessary for these objects to be # visible to nlme and augPred when evaluation is done by -# pkgdown to generated the html docs. +# pkgdown to generate the html docs. assign("nlme_f", nlme_f, globalenv()) assign("grouped_data", grouped_data, globalenv()) |