A generic function that returns functions for confidence/predicion intervals¶
Description¶
Returns a function for confidence or prediction intervals appropriate
for an fitted model object. For linear regression this will be
cinorm()
, for logistic regression (done by glm
) this will be
cibeta
, etc.
Usage¶
get_cifunc(obj)
## S4 method for signature 'lm'
get_cifunc(obj)
## S4 method for signature 'glm'
get_cifunc(obj)
## S4 method for signature 'mblogit'
get_cifunc(obj)
## S4 method for signature 'mclogit'
get_cifunc(obj)
## S4 method for signature 'clm'
get_cifunc(obj)
## S4 method for signature 'clmm'
get_cifunc(obj)
Arguments¶
obj
-
an fitted model object