https://github.com/cran/cplm
Raw File
Tip revision: 9be3f5a0653739a591e2b30cc9e77900612dad9a authored by Wayne Zhang on 08 November 2011, 00:00:00 UTC
version 0.4-1
Tip revision: 9be3f5a
NAMESPACE
useDynLib(cplm)

############################
#  import 
############################

importFrom(stats,  predict, coef, residuals, resid, 
		fitted, fitted.values, df.residual, AIC, deviance,
		terms, formula, model.matrix)
importFrom(methods, show)
importFrom(graphics, plot)
import(Matrix)
import(coda)
importClassesFrom(lme4, mer, summary.mer)
importMethodsFrom(lme4, VarCorr, vcov)

############################
#  export 
############################
# function 
export(cpglm)
export(cpglm_em)
export(cpglm_profile)
export(bcpglm)
export(cpglmm)
export(bcpglmm)
export(igamma, iwish)

#Classes
exportClasses(cplm, cpglm, cpglmm, bcpglm, bcpglmm, summary.cpglmm)
exportClasses(NullNum, NullList)
           
#Methods
exportMethods(summary, show,  "$", "[[", "[", names, coef, vcov, 
              residuals, resid, fitted, fitted.values, df.residual,
		  AIC, deviance, terms, formula, model.matrix, plot,
		  VarCorr)
back to top