aboutsummaryrefslogtreecommitdiff
path: root/log/test.log
AgeCommit message (Collapse)AuthorFilesLines
2023-08-29Run tests on slimbook: 573.5 sHEADdevJohannes Ranke1-103/+36
Compared with 262.6 s on my main desktop
2023-08-17Update tests without any openblas variantJohannes Ranke1-14/+69
This even a bit faster.
2023-08-17Update test log with libopenblas0-pthreadJohannes Ranke1-49/+15
2023-08-17Update platform specific tests on desktopJohannes Ranke1-34/+80
2023-08-09Don't install saemix 3.2 from github any moreRanke Johannes1-17/+17
Emmanuelle has made an official release to CRAN in June
2023-08-08Update docs, check and test on RStudio serverRanke Johannes1-44/+32
2023-08-04Mesotrione data and vignetteJohannes Ranke1-27/+27
The vignette illustrates pH dependent degradation (covariate modelling) with some detail for the parent compound. Also, a bug in the saem method of the illparms function was fixed, which prevented to find ill-defined parameters in cases where e.g. slopes of covariate models have a negative estimate.
2023-05-19Prepare release of v1.2.4v1.2.4Johannes Ranke1-12/+12
- Update DESCRIPTION - Update Makefile to document how to use R-patched - Remove markup from two URLs to avoid CRAN NOTE - Switch two vignettes from html_document to html_vignette to save space in the docs directory, also avoiding a CRAN NOTE - Complete rebuild of pkgdown docs for release
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

Contact - Imprint