Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-02-03 | Prepare for v1.0.0v1.0.0 | Johannes Ranke | 4 | -237/+0 | |
- Improve authorship and copyright information - Prepare pkgdown config - Remove dependence on saemix as we need the development version which is not ready for CRAN - Temporarily remove saemix interface to check code coverage of the rest | |||||
2021-01-25 | Update visual tests | Johannes Ranke | 3 | -1895/+1895 | |
2021-01-25 | Change default ylab in plot.mkinfit, explicit ylab for plot.mmkin | Johannes Ranke | 12 | -20/+20 | |
See NEWS.md. Closes #12 | |||||
2021-01-06 | Make saemix and corresponding tests optional | Johannes Ranke | 7 | -50/+71 | |
Address release critical check and test issues | |||||
2020-12-19 | Dimethenamid data, normalisation options | Johannes Ranke | 3 | -2/+11 | |
2020-12-17 | Remove two skipped (on Travis) tests to reduce noise | Johannes Ranke | 3 | -217/+1 | |
2020-12-10 | Tried to find a fast test for deSolve in saemix | Johannes Ranke | 2 | -2/+7 | |
But could not find one. | |||||
2020-12-10 | Add a test for saemix with deSolve | Johannes Ranke | 2 | -8/+16 | |
But skip the test as it takes too long to always run | |||||
2020-12-09 | Some test fixes | Johannes Ranke | 3 | -6/+4 | |
2020-12-09 | Add more tests and fix HS in saem | Johannes Ranke | 4 | -1213/+1276 | |
2020-12-09 | Fix a test I accidentally broke | Johannes Ranke | 1 | -1/+1 | |
2020-12-09 | And more | Johannes Ranke | 3 | -1/+16 | |
2020-12-09 | Any yet more tests | Johannes Ranke | 4 | -3/+17 | |
2020-12-09 | Update test output and reduce precision for travis | Johannes Ranke | 4 | -27/+27 | |
2020-12-09 | More tests | Johannes Ranke | 8 | -2608/+1528 | |
2020-12-09 | Try other mixed fits for vdiffr on travis | Johannes Ranke | 4 | -4810/+1290 | |
2020-12-09 | Test print method for mixed.mmkin | Johannes Ranke | 3 | -2/+32 | |
2020-12-09 | Make tests more robust, remove two redundant ones | Johannes Ranke | 4 | -44/+22 | |
2020-12-09 | Fix tests and rerun | Johannes Ranke | 4 | -83/+88 | |
2020-12-09 | Some more tests that may work on travis now | Johannes Ranke | 2 | -27/+28 | |
2020-12-09 | Some more tests | Johannes Ranke | 5 | -67/+194 | |
2020-12-09 | Don't test on devel, skip failing vdiffr tests | Johannes Ranke | 1 | -1/+1 | |
I can test on R-devel locally for preparing releases | |||||
2020-12-08 | Test plots on R-release and cache packages again | Johannes Ranke | 22 | -3137/+3137 | |
2020-12-08 | mixed.mmkin and test coverage | Johannes Ranke | 11 | -5/+10170 | |
2020-12-02 | Possibility to specify random effects structures | Johannes Ranke | 1 | -6/+6 | |
The default is pdDiag again, as we often have a small number of datasets in degradation kinetics. | |||||
2020-11-30 | Log-Cholesky parameterisation as default in nlme.mmkin | Johannes Ranke | 1 | -9/+11 | |
2020-11-19 | Update tests, improve CAKE_export test | Johannes Ranke | 2 | -4/+3 | |
2020-11-12 | Update test output | Johannes Ranke | 1 | -1/+2 | |
2020-11-11 | Skip vdiffr tests on travis as they are not robust | Johannes Ranke | 5 | -3/+6 | |
As can be seen in the miniscule change seen on R-devel in the reference plot updated with this commit | |||||
2020-11-08 | Improve saem method, add summary | Johannes Ranke | 1 | -1/+1 | |
Also make the endpoints function work for saem objects. | |||||
2020-11-07 | Create saem generic for fitting saemix models | Johannes Ranke | 1 | -1/+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-11-06 | Fast analytical solutions for saemix, update.mmkin | Johannes Ranke | 4 | -162/+197 | |
Also, use logit transformation for g and for solitary formation fractions, addressing #10. | |||||
2020-11-04 | Revert to use starting values for random effects in nlme.mmkin | Johannes Ranke | 5 | -14/+4 | |
2020-10-27 | Add summary method for nlme.mmkin objects | Johannes Ranke | 1 | -1/+1 | |
Improve and update docs | |||||
2020-10-08 | Fix issues for release | Johannes Ranke | 2 | -3/+3 | |
2020-07-17 | mkinfit: Ignore unused components of state.ini | Johannes Ranke | 2 | -1/+11 | |
2020-07-15 | Improve tests | Johannes Ranke | 1 | -44/+44 | |
- Reduce significant digits for the objective function output in mkinfit(..., quiet = FALSE) as R and R-devel gave different output on my system - Add makefile target 'devtest' for testing with R-devel, in order to fix problems showing up with R-devel on Travis | |||||
2020-07-15 | Improve handling of (partially) failing fits | Johannes Ranke | 1 | -1/+1 | |
2020-06-15 | Test plots on r-devel only | Johannes Ranke | 19 | -222/+225 | |
following the arguments of Xavier Robin https://github.com/r-lib/vdiffr/issues/86#issuecomment-636447231 | |||||
2020-06-15 | Fix a bug, update for current vdiffr | Johannes Ranke | 3 | -4/+1 | |
Vignette FOCUS_L failed as I had introduced a bug in the handling of warnings. Current vdiffr only runs visual tests if R < 4.1.0, skipping r-devel for now, see https://github.com/r-lib/vdiffr/commit/630a29d013361fd63fea242f531e2db6aef37919 | |||||
2020-05-29 | Improve handling of warnings, reorganize tests | Johannes Ranke | 8 | -129/+146 | |
2020-05-29 | Warn if standardized residuals are unlikely normal | Johannes Ranke | 8 | -32/+51 | |
This revealed a bug in the data returned in mkinfit$data in the case of the d_3 algorithm, which also affected the residual plot - the data from the direct fitting was not returned even if this was the better method. | |||||
2020-05-28 | use_of_ff = "max" for shorthand models like "SFO" | Johannes Ranke | 6 | -25/+25 | |
2020-05-26 | Use all cores per default, confint tolerance | Johannes Ranke | 1 | -1/+1 | |
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-12 | Rerun tests and checks, CRAN comments | Johannes Ranke | 1 | -1/+1 | |
2020-05-12 | Address solaris platform dependence revealed on CRAN | Johannes Ranke | 1 | -1/+2 | |
2020-05-11 | Release to CRANv0.9.50.1 | Johannes Ranke | 1 | -1/+2 | |
2020-05-11 | Add analytical solution for DFOP-SFO | Johannes Ranke | 2 | -5/+20 | |
This is about twice as fast as deSolve compiled in the case of FOCUS D | |||||
2020-05-11 | Analytical solutions for all SFO variants | Johannes Ranke | 5 | -31/+64 | |
2020-05-11 | Don't run visual tests on r-devel for now | Johannes Ranke | 2 | -0/+3 | |
https://github.com/r-lib/vdiffr/issues/86 |