aboutsummaryrefslogtreecommitdiff
path: root/log/test.log
AgeCommit message (Collapse)AuthorFilesLines
2023-04-16Skip the Eigenvalue based saem testJohannes Ranke1-8/+12
It took too long, and this solution method is not recommended. We are saving 140 seconds here on my system, so more time is saved on travis.
2023-04-15Increase test coverageJohannes Ranke1-15/+15
Also, using mkin analytical solutions for more than one observed variable is not supported (but could be if out_values would be reordered).
2023-04-15Make predefined symbols saferJohannes Ranke1-14/+15
We still need to create a parallel processing cluster _after_ creating a compiled model that is moved to a user defined location, at least I did not find another way to make it work. This is not a problem with parallel processing without a cluster, which is not available on Windows.
2023-04-06Fix a bug with moved DLLs and current deSolveJohannes Ranke1-12/+12
In mkinmod, dll_info was not included in the returned model object in the case that the DLL was moved to a user defined directory. This is now fixed.
2023-04-02Deal with covariates in summary for saem.mmkin objectsJohannes Ranke1-13/+13
2023-04-01Update tests on 5950xJohannes Ranke1-29/+29
Update platform dependent test plots
2023-03-23Support covariates in endpoints()Johannes Ranke1-18/+17
2023-03-22Fix typo in mkinerrminJohannes Ranke1-26/+27
Thanks to Sebastian Meyer for spotting it.
2023-02-17Finish adapting to upcoming deSolveJohannes Ranke1-13/+13
2022-12-15List random effects correlations in output if anyJohannes Ranke1-10/+10
Update docs
2022-12-12Run tests with new CPU and RAMJohannes Ranke1-26/+26
2022-12-07Check slopes in saemix covariate modelsJohannes Ranke1-25/+16
2022-12-06Some parplot improvementsJohannes Ranke1-16/+25
llquant argument, improved legend text, tests
2022-12-02Avoid error message at testthat terminationJohannes Ranke1-24/+23
https://github.com/r-lib/processx/issues/236
2022-12-01Possibility to manually specify no_random_effects in mhmkinJohannes Ranke1-24/+24
2022-11-29Complete starting values in summary for saem.mmkin fitsJohannes Ranke1-17/+17
Also update tests to the changes in mhmkin (see NEWS)
2022-11-19Confirm which test fail on R-develv1.2.1Johannes Ranke1-16/+16
2022-11-18Move two saem fits from setup script to skipped testsJohannes Ranke1-22/+22
Save winbuilder/CRAN check time...
2022-11-18Use cluster with two cores to reduce windows check timeJohannes Ranke1-18/+19
2022-11-18Make mixed model test data permanent to ensure reproducibilityJohannes Ranke1-14/+14
To ensure that tests on different platforms work on the same data, the mixed modelling test data previosly generated in tests/testthat/setup_script.R were generated once using the script in inst/dataset/generation/ds_mixed.R, and are now distributed with the package.
2022-11-18Round parameters with signif() before printingJohannes Ranke1-10/+10
This will hopefully make the test pass on all relevant platforms.
2022-11-18Pass error.init to saemix_model, show in parplotJohannes Ranke1-19/+19
Due to an oversight, error.init was not really passed to saemix_model in saem.mmkin. The new initial values were reverted to c(1, 1), in order to avoid changing the test results. Initial values for error model parameters are now shown in parplot.multistart.
2022-11-16Update DESCRIPTION and NEWS, check and testJohannes Ranke1-18/+18
2022-11-16Address platform dependence that surfaced on winbuilderJohannes Ranke1-23/+23
2022-11-15Import saemix for easier profiling, update online docsJohannes Ranke1-8/+8
2022-11-14Automatic starting parameters for saem.mmkinJohannes Ranke1-16/+16
For the case of mkin transformations. This gives faster convergence, and appears to avoid problems with numeric ODE solutions
2022-11-08Show DFOP g equivalent of SFORB in summary, testJohannes Ranke1-13/+13
2022-11-08Simplify SFORB also in the endpoint functionJohannes Ranke1-13/+13
2022-11-08Simplify SFORB analytical solution, whitespaceJohannes Ranke1-20/+20
I do not know why the formulae for b1 and b2 on page 64 of FOCUS kinetics (2014) were not simplified. Clearly, the term k12 * k21 - (k12 + k1output) * k21) can be simplified to - k1output * k21 The test for equivalence of DFOP and SFORB fits verifies that the change is OK. I also removed trailing whitespaces, substituted tab characters by two whitespaces and removed indenting of text in paragraphs describing parameters in roxygen comments to unify formatting.
2022-11-04Attempt at automatic setting of random effectsJohannes Ranke1-19/+19
Based on parameters in the separate fits that fail the t-test.
2022-11-01Fix plotting saem fits with covariatesJohannes Ranke1-9/+9
2022-11-01Fix illparms testsJohannes Ranke1-45/+12
2022-11-01Improved printing for illparms()Johannes Ranke1-14/+47
For the case of single fits and no ill-defined parameters found
2022-10-31Fix R CMD checkJohannes Ranke1-10/+10
2022-10-29Another attempt to make the test robustJohannes Ranke1-18/+18
As the last update failed on travis. Now we should be more robust, as rounding to one digit works better when parameters are log-transformed (mkin transformations) in the output.
2022-10-28Rename parhist to parplot and make it genericJohannes Ranke1-21/+21
That parhist name was not the brightest idea, as it does not show histograms.
2022-10-28Export status method for mhmkin, move to status.RJohannes Ranke1-20/+20
2022-10-28Update test to renamed methodJohannes Ranke1-13/+13
2022-10-26Really test anova output, test covariatesJohannes Ranke1-11/+11
2022-10-26Reduced sfo model for multistart.saem.mkin testsJohannes Ranke1-13/+13
2022-10-26Remove kernel density estimate from llhistJohannes Ranke1-15/+15
2022-10-26Try to make multistart (more) reproducibleJohannes Ranke1-9/+9
2022-10-26Tests pass locallyJohannes Ranke1-21/+19
2022-10-26Make multistart work with testthat scopesJohannes Ranke1-12/+20
Also skip long-running test with saem using the analytical from mkin
2022-10-25Change DFOP mixed model data in tests, updatesJohannes Ranke1-12/+12
2022-10-25Complete documentation and fix a bugJohannes Ranke1-11/+11
The bug was introduced by the changes in summary.saem.mmkin.R and surfaced in the tests when using saemix transformations.
2022-10-17SFORB in saem, update for mhmkin and multistartJohannes Ranke1-8/+8
2022-10-14Select best fit from multistart, use in parhistJohannes Ranke1-13/+13
- Add 'best' and 'which.best' generics with methods for multistart objects - Per default, scale the parameters in parhist plots using the fit with the highest log likelihood.
2022-10-05Simplify the removal of random effectsJohannes Ranke1-10/+10
This is achieved by introducing the argument 'no_random_effect' to the saem function.
2022-09-30Test the package with saemix development versionJohannes Ranke1-43/+12

Contact - Imprint