Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-11-08 | Improve saem method, add summary | Johannes Ranke | 1 | -0/+1 | |
Also make the endpoints function work for saem objects. | |||||
2020-11-07 | Create saem generic for fitting saemix models | Johannes Ranke | 1 | -0/+1 | |
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-10-27 | Add summary method for nlme.mmkin objects | Johannes Ranke | 1 | -0/+1 | |
Improve and update docs | |||||
2020-10-26 | Small editorial change | Johannes Ranke | 1 | -1/+1 | |
2020-10-24 | Plot method for nlme.mmkin objects | Johannes Ranke | 1 | -0/+2 | |
Update docs | |||||
2020-10-15 | Get current nlme version from CRAN on Travis | Johannes Ranke | 1 | -2/+2 | |
Also commit the dontrun instruction for saemix I had wanted to commit and switch back to devel mode for pkgdown | |||||
2020-10-15 | Update online docs for release version | Johannes Ranke | 1 | -2/+2 | |
2020-10-08 | Fix issues for release | Johannes Ranke | 1 | -2/+0 | |
2020-05-27 | Change dev version label to info color | Johannes Ranke | 1 | -0/+1 | |
instead of the orange danger color. | |||||
2020-05-27 | Create up to date pkgdown docs in development mode | Johannes Ranke | 1 | -0/+3 | |
2020-05-25 | First working version of saemix helper functions | Johannes Ranke | 1 | -0/+2 | |
saemix_data depends on a development version of saemix, see pull request saemixdevelopment/saemixextension#2 | |||||
2020-05-12 | Add a link to the benchmark vignette to the docs | Johannes Ranke | 1 | -0/+2 | |
2020-05-11 | Avoid merge() and data.frame() in cost function | Johannes Ranke | 1 | -0/+1 | |
also for deSolve and eigenvalue based solutions. This noticeably increases performance for these methods, see test.log and benchmark vignette. | |||||
2020-04-18 | Avoid assignment to .GlobalEnv for CRAN | Johannes Ranke | 1 | -0/+1 | |
2020-04-15 | A plot method for nlme.mmkin fits | Johannes Ranke | 1 | -0/+5 | |
2020-04-04 | Static documentation rebuilt by pkgdown | Johannes Ranke | 1 | -0/+1 | |
2019-11-13 | Calculate Akaike weights | Johannes Ranke | 1 | -0/+1 | |
2019-11-09 | Add a lack-of-fit test | Johannes Ranke | 1 | -0/+1 | |
- Switch an example dataset in the test setup to a dataset with replicates, adapt tests - Skip the test for lrtest with an update specification as it does not only fail when pkgdown generates static help pages, but also in testthat | |||||
2019-11-01 | Fix bug in yesterdays release, add methods for BIC | Johannes Ranke | 1 | -0/+1 | |
2019-10-31 | Add likelihood ratio test and other methods, fixes | Johannes Ranke | 1 | -8/+11 | |
The likelihood ratio test method is lrtest, in addition, methods for update and residuals were added. | |||||
2019-10-26 | Fix checks and tests | Johannes Ranke | 1 | -5/+7 | |
Static documentation rebuilt by pkgdown | |||||
2019-10-21 | Improve tests, remove geometric_mean | Johannes Ranke | 1 | -1/+0 | |
2019-09-18 | Add url: tag to _pkgdown.yml | Johannes Ranke | 1 | -0/+2 | |
Static documentation rebuilt by pkgdown | |||||
2019-06-19 | change to `superseded` | Will Beasley | 1 | -1/+1 | |
https://en.wiktionary.org/wiki/superseed | |||||
2019-06-04 | Additional algorithm "d_c", more tests, docs | Johannes Ranke | 1 | -0/+2 | |
The new algorithm tries direct optimization of the likelihood, as well as a three step procedure. In this way, we consistently get the model with the highest likelihood for SFO, DFOP and HS for all 12 new test datasets. | |||||
2019-02-26 | Static documentation rebuilt by pkgdown | Johannes Ranke | 1 | -0/+1 | |
2019-02-26 | NAFTA SOP Attachment vignette | Johannes Ranke | 1 | -0/+2 | |
Also: - Change rounding in print.nafta - Add dots argument to nafta() - Use cores=1 in examples - Restrict N in IORE model to values > 0 | |||||
2019-02-26 | Static documentation rebuilt by pkgdown | Johannes Ranke | 1 | -0/+6 | |
2019-02-25 | Add plotting tests, add nafta to pkgdown | Johannes Ranke | 1 | -0/+1 | |
2019-02-21 | Add the logistic model | Johannes Ranke | 1 | -0/+1 | |
2019-01-31 | Static documentation rebuilt by pkgdown | Johannes Ranke | 1 | -0/+1 | |
2018-11-26 | Include AIC.mmkin to static docs | Johannes Ranke | 1 | -0/+1 | |
Static documentation rebuilt by pkgdown | |||||
2018-11-23 | Static documentation rebuilt by pkgdown | Johannes Ranke | 1 | -0/+1 | |
2018-09-14 | Remove two vignettes from the package but not from docs | Johannes Ranke | 1 | -2/+2 | |
- Rebuild static documentation - Adapt test to new approach to two component error model where the model is inadequate | |||||
2018-07-18 | Correct references to the Rocke and Lorenzato model | Johannes Ranke | 1 | -1/+1 | |
Rename 'sigma_rl' to 'sigma_twocomp' as the Rocke and Lorenzato model assumes lognormal distribution for large y. Rebuild static documentation. | |||||
2018-01-30 | Reweighting with two-component error model | Johannes Ranke | 1 | -0/+1 | |
Static documentation except articles rebuilt by pkgdown | |||||
2018-01-05 | Update _pkgdown.yml | Johannes Ranke | 1 | -0/+1 | |
Static documentation except articles rebuilt by pkgdown | |||||
2017-09-14 | Convert FOCUS Z vignette to rmarkdown/html | Johannes Ranke | 1 | -0/+2 | |
- Static documentation rebuilt by pkgdown::build_articles() - DESCRIPTION: Version bump and current date | |||||
2017-07-21 | Rename twa to max_twa_parent, update docs | Johannes Ranke | 1 | -3/+4 | |
2017-05-05 | Static documentation except articles rebuilt by pkgdown | Johannes Ranke | 1 | -0/+1 | |
2017-05-05 | Static docs except articles rebuilt with current pkgdown | Johannes Ranke | 1 | -1/+0 | |
2017-03-28 | Change vignette format for twa vignette, update docs | Johannes Ranke | 1 | -0/+2 | |
2016-12-08 | Static documentation except articles rebuilt by pkgdown | Johannes Ranke | 1 | -0/+2 | |
2016-11-18 | Fix links in README, configure navbar, rebuild docs | Johannes Ranke | 1 | -1/+1 | |
2016-11-18 | Static documentation rebuilt by pkgdown::build_site(run_dont_run = TRUE) | Johannes Ranke | 1 | -2/+19 | |
Again with the jranke branch of jranke/pkgdown | |||||
2016-11-18 | Do not use ends_with to keep ordering | Johannes Ranke | 1 | -1/+0 | |
2016-11-18 | Static documentation rebuilt by pkgdown::build_site(run_dont_run = TRUE) | Johannes Ranke | 1 | -2/+2 | |
Using branch 'jranke' on jranke/pkgdown, fixing issues hadley/pgkdown#178 and hadley/pkgdown#213 Remove plot=TRUE from mkinfit calls also in dontrun sections of examples to avoid a flood png files documenting the progress of the fit. | |||||
2016-11-03 | Static documentation rebuilt by pkgdown::build_site() | Johannes Ranke | 1 | -1/+6 | |
Using pkgdown with PR hadley/pkgdown#212 | |||||
2016-10-26 | Complete pkgdown conf, rerun with current master branch | Johannes Ranke | 1 | -14/+42 | |
2016-10-06 | Static documentation rebuilt by pkgdown::build_site() | Johannes Ranke | 1 | -0/+32 | |