aboutsummaryrefslogtreecommitdiff
path: root/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 Ranke2-17/+22
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 Ranke2-20/+15
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 Ranke2-16/+21
2023-04-01Update tests on 5950xJohannes Ranke2-44/+37
Update platform dependent test plots
2023-03-23Support covariates in endpoints()Johannes Ranke2-24/+24
2023-03-22Fix typo in mkinerrminJohannes Ranke2-34/+41
Thanks to Sebastian Meyer for spotting it.
2023-02-17Update benchmark results for 7950XJohannes Ranke1-1/+1
2023-02-17Finish adapting to upcoming deSolveJohannes Ranke3-39/+20
2023-01-09Prebuilt PDF vignettes, summary_listingJohannes Ranke1-12/+22
2022-12-19Rename template folder, create formatJohannes Ranke1-5/+16
Instead of rmarkdown::pdf_document, mkin::hierarchical_kinetics is used as a document format in the template. In this way, the template file can be freed from some R code and yaml options that the average user does not have to be aware of.
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-02Update test log with current R-develJohannes Ranke1-42/+23
One printout and four plots are different using current R-devel. These are currently skipped on CRAN. These test were run with the development version of saemix (my branch installable_dev_version). If saemix from CRAN is used, there are some more differences due to different error model parameters
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 Ranke2-28/+28
2022-11-29Complete starting values in summary for saem.mmkin fitsJohannes Ranke2-18/+18
Also update tests to the changes in mhmkin (see NEWS)
2022-11-19Confirm which test fail on R-develv1.2.1Johannes Ranke2-36/+110
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 Ranke2-16/+16
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 Ranke2-11/+11
This will hopefully make the test pass on all relevant platforms.
2022-11-18Pass error.init to saemix_model, show in parplotJohannes Ranke2-19/+20
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-18Improve logLik.mkinfit to attach nobs attributeJohannes Ranke1-29/+32
The lack of that attribute lead to a failure to calculate the BIC in test_AIC.R on R-devel from yesterday.
2022-11-16Reduce testing on CRAN serversv1.2.0Johannes Ranke1-1/+0
2022-11-16Update DESCRIPTION and NEWS, check and testJohannes Ranke2-20/+20
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 Ranke2-18/+18
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 Ranke2-21/+21
Based on parameters in the separate fits that fail the t-test.
2022-11-04Never fail with errors in saem.mmkinJohannes Ranke1-8/+2
I think it is always preferable to be able to investigate the saemix object returned.
2022-11-01Add read_spreadsheetJohannes Ranke1-1/+1
2022-11-01Fix plotting saem fits with covariatesJohannes Ranke2-10/+10
2022-11-01Fix illparms testsJohannes Ranke1-45/+12
2022-11-01Improved printing for illparms()Johannes Ranke2-17/+50
For the case of single fits and no ill-defined parameters found
2022-10-31Fix R CMD checkJohannes Ranke2-11/+11
2022-10-29Another attempt to make the test robustJohannes Ranke2-19/+19
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