diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2019-11-09 01:05:51 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2019-11-09 01:05:51 +0100 |
commit | 20b9c584e7c43ecbb708459e531c24a1a4751e17 (patch) | |
tree | a0dd523fc6cb60e33420b0eb9bf79307e5b2a2a4 /NAMESPACE | |
parent | ead1f286271923f57d83aed41cb34181a10773ef (diff) |
Add a lack-of-fit test
- 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
Diffstat (limited to 'NAMESPACE')
-rw-r--r-- | NAMESPACE | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -4,6 +4,7 @@ S3method("[",mmkin) S3method(AIC,mmkin) S3method(BIC,mmkin) S3method(confint,mkinfit) +S3method(loftest,mkinfit) S3method(logLik,mkinfit) S3method(lrtest,mkinfit) S3method(mkinpredict,mkinfit) @@ -32,6 +33,7 @@ export(backtransform_odeparms) export(endpoints) export(ilr) export(invilr) +export(loftest) export(logistic.solution) export(lrtest) export(max_twa_dfop) @@ -73,8 +75,11 @@ importFrom(parallel,parLapply) importFrom(stats,AIC) importFrom(stats,BIC) importFrom(stats,aggregate) +importFrom(stats,coef) importFrom(stats,cov2cor) importFrom(stats,dist) +importFrom(stats,dnorm) +importFrom(stats,lm) importFrom(stats,logLik) importFrom(stats,nlminb) importFrom(stats,nobs) |