Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-11-07 | Update static docs for dev version | Johannes Ranke | 9 | -121/+450 | |
2020-11-07 | Create saem generic for fitting saemix models | Johannes Ranke | 2 | -2/+2 | |
The reasons for this decision were - Creating an saemix generic in the saemix package caused problems with roxygen, because functions like saemix.plot.xy were documented in their help files as S3 methods, although explicitly exported with @export - Creating an saemix generic in this package is possible, but would make it necessary to load samix with exclude = "saemix" in order to avoid overwriting the generic when loading saemix. - The return object of such an saemix generic in this package cannot be an S3 class with class attribute c("saemix.mmkin", "SaemixObject") similar to nlme.mmkin, as saemix returns an S4 class. - Extending the S4 class SaemixObject using simple inheritance to a class SaemixMmkinObject with additional slots did not work as expected. When the initialize method was left untouched, it prevented creation of an SaemixMmkinObject even if it was based on an initialised SaemixObject, as the initialize method seems to always be called by new(). This could potentially be circumvented by a coerce method. If an alternative initialize method was used, an SaemixMmkinObject could be created. However, the methods written for SaemixObjects only worked in some instances, either because they checked for the class, and not for class inheritance (like compare.saemix), or because the initialize method was called for some reason. Therefore, the idea of creating a derived S4 class was abandoned. - A side effect of this decision is that the introduction of the saem generic opens the possibility to use the same generic also for other backends like nlmixr with the SAEM algorithm. | |||||
2020-11-06 | Update benchmarks for dev version | Johannes Ranke | 4 | -69/+129 | |
2020-11-06 | Fast analytical solutions for saemix, update.mmkin | Johannes Ranke | 40 | -406/+972 | |
Also, use logit transformation for g and for solitary formation fractions, addressing #10. | |||||
2020-11-05 | Fix link and update docs | Johannes Ranke | 8 | -93/+117 | |
2020-10-27 | Add summary method for nlme.mmkin objects | Johannes Ranke | 9 | -48/+535 | |
Improve and update docs | |||||
2020-10-26 | Put the legend in its own area for plot.nlme.mmkin | Johannes Ranke | 15 | -80/+74 | |
2020-10-24 | Fix a bug for nlme with parent only, improve examples | Johannes Ranke | 10 | -89/+14 | |
2020-10-24 | Improve plot layout | Johannes Ranke | 4 | -17/+6 | |
2020-10-24 | Plot method for nlme.mmkin objects | Johannes Ranke | 11 | -76/+351 | |
Update docs | |||||
2020-10-22 | Really fix check for nlme::varConstProp | Johannes Ranke | 2 | -4/+49 | |
And add output for nlme fit translating the mkinfit error model "obs" into nlme::varIdent(). | |||||
2020-10-22 | Fix check for nlme::varConstProp | Johannes Ranke | 2 | -1/+1 | |
2020-10-22 | Update pkgdown docs | Johannes Ranke | 22 | -113/+201 | |
2020-10-15 | More gentle example for saemix with combined error model | Johannes Ranke | 9 | -47/+43 | |
2020-10-15 | Update online docs for release version | Johannes Ranke | 140 | -2295/+2725 | |
2020-10-15 | Updating docs of current dev version | Johannes Ranke | 34 | -154/+456 | |
2020-10-08 | Fix another URL, add devcheck targetv0.9.50.3 | Johannes Ranke | 7 | -10/+10 | |
2020-10-08 | Fix issues for release | Johannes Ranke | 69 | -1129/+799 | |
2020-05-27 | Improve mkinmod docs | Johannes Ranke | 2 | -33/+57 | |
2020-05-27 | Change dev version label to info color | Johannes Ranke | 24 | -94/+94 | |
instead of the orange danger color. | |||||
2020-05-27 | Add docs generated using released version 0.9.52 | Johannes Ranke | 63 | -1348/+660 | |
2020-05-27 | Create up to date pkgdown docs in development mode | Johannes Ranke | 184 | -0/+24656 | |
2020-05-26 | Use all cores per default, confint tolerance | Johannes Ranke | 9 | -105/+80 | |
Also, use more intelligent starting values for the variance of the random effects for saemix. While this does not appear to speed up the convergence, it shows where this variance is greatly reduced by using mixed-effects models as opposed to the separate independent fits. | |||||
2020-05-25 | First working version of saemix helper functions | Johannes Ranke | 14 | -25/+526 | |
saemix_data depends on a development version of saemix, see pull request saemixdevelopment/saemixextension#2 | |||||
2020-05-15 | Use markdown links in mkinfit documentation | Johannes Ranke | 2 | -47/+49 | |
2020-05-14 | Update version number, better example formatting | Johannes Ranke | 8 | -22/+14 | |
2020-05-14 | Add a parms method for mmkin objects | Johannes Ranke | 3 | -4/+89 | |
2020-05-14 | Test markdown link, article update due to .rmd extension | Johannes Ranke | 11 | -72/+96 | |
2020-05-13 | Further formatting improvement of benchmark vignette | Johannes Ranke | 2 | -86/+62 | |
Also, use .rmd extension instead of .Rmd for vignettes. | |||||
2020-05-12 | Another documentation update | Johannes Ranke | 2 | -23/+23 | |
2020-05-12 | Update pkgdown | Johannes Ranke | 2 | -31/+166 | |
2020-05-12 | Add a link to the benchmark vignette to the docs | Johannes Ranke | 7 | -1/+19 | |
2020-05-12 | Update vignettes and docs | Johannes Ranke | 91 | -1474/+1537 | |
2020-05-12 | Rerun tests and checks, CRAN comments | Johannes Ranke | 1 | -1/+1 | |
2020-05-12 | Improve documentation, now using a spell checker | Johannes Ranke | 15 | -120/+114 | |
2020-05-12 | Documentation improvements, rebuild static docs | Johannes Ranke | 51 | -872/+908 | |
2020-05-11 | Add analytical solution for DFOP-SFO | Johannes Ranke | 8 | -10/+21 | |
This is about twice as fast as deSolve compiled in the case of FOCUS D | |||||
2020-05-11 | Avoid merge() and data.frame() in cost function | Johannes Ranke | 21 | -535/+607 | |
also for deSolve and eigenvalue based solutions. This noticeably increases performance for these methods, see test.log and benchmark vignette. | |||||
2020-05-07 | Another overhaul of analytical solutions | Johannes Ranke | 19 | -125/+359 | |
Still in preparation for analytical solutions of coupled models | |||||
2020-05-07 | Merge parent solutions to one file | Johannes Ranke | 7 | -7/+47 | |
- Combine R/*.solution.R into R/parent_solutions.R - Create a roxygen family of related functions - Reduce redundancy by using the inherit tag - Change the parent.0 argument to parent_0 to match the corresponding parameter name used in mkinfit | |||||
2020-05-07 | Static documentation rebuilt by pkgdown | Johannes Ranke | 26 | -798/+1157 | |
2020-04-20 | Prepare release to address failed CRAN check | Johannes Ranke | 8 | -35/+38 | |
2020-04-18 | Avoid assignment to .GlobalEnv for CRAN | Johannes Ranke | 4 | -6/+191 | |
2020-04-17 | Advertise nlme related functionality | Johannes Ranke | 1 | -0/+1 | |
2020-04-17 | News entry, static documentation rebuilt by pkgdown | Johannes Ranke | 1 | -0/+1 | |
2020-04-15 | Adapt endpoint() to also work for nlme.mmkin objects | Johannes Ranke | 3 | -11/+49 | |
2020-04-15 | Include random effects in starting parameters | Johannes Ranke | 17 | -84/+200 | |
- mean_degparms() now optionally returns starting values for fixed and random effects, which makes it possible to obtain acceptable fits also in more difficult cases (with more parameters) - Fix the anova method, as it is currently not enough to inherit from lme: https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17761 - Show fit information, and per default also errmin information in plot.nlme.mmkin() - Examples for nlme.mmkin: Decrease tolerance and increase the number of iterations in the PNLS step in order to be able to fit FOMC-SFO and DFOP-SFO | |||||
2020-04-15 | A plot method for nlme.mmkin fits | Johannes Ranke | 7 | -16/+599 | |
2020-04-14 | Keep order of datasets in nlme_data, add a plot | Johannes Ranke | 2 | -2/+34 | |
2020-04-10 | Improve nlme function docs | Johannes Ranke | 12 | -31/+119 | |