https://github.com/cran/VCA
Raw File
Tip revision: 6ba209256cc8e2b5b610392eaf474bb2f9686792 authored by Andre Schuetzenmeister on 07 March 2024, 17:10:02 UTC
version 1.5.1
Tip revision: 6ba2092
NAMESPACE
### Generics and functions defined in this package

export(	
	"anovaVCA",
	"anovaMM",
	"as.matrix.VCA",
	"as.matrix.VCAinference",
	"coef.VCA",
	"fitLMM",
	"fitVCA",
	"fixef",
	"fixef.VCA",
	"getCI",
	"getDF",
	"getL",
	"getMM",
	"getV",
	"getMat",
	"getIP.remlVCA",
	"isBalanced",
	"legend.m",
	"lsmeans",
	"lmerSummary",
	"MPinv",
	"model.frame.VCA",
	"model.matrix.VCA",
	"orderData",
	"predict.VCA",
	"plot.VCA",
	"plotRandVar",
	"print.VCA",
	"print.VCAinference",
	"protectedCall",
	"ranef",
	"ranef.VCA",
	"remlMM",
	"remlVCA",
	"residuals.VCA",
	"solveMME",
	"stepwiseVCA",
	"test.lsmeans",
	"test.fixef",
	"reScale",
	"Scale",
	"summarize.VCA",
	"summarize.VCAinference",
	"scaleData",
	"varPlot",
	"vcov.VCA",
	"vcovVC",		
	"VCAinference"
)

### Packages which are imported (appearing in the Description->Imports enumeration)

import( 
	"graphics",
	"grDevices",
	"stats",
	"methods",
	"Matrix"
)

importFrom("lme4", ranef, lmer, VarCorr, lmerControl)
importFrom("numDeriv", grad)
importFrom("utils", capture.output)


### exported classes
#
#exportClasses( 	"VCA",
#		"VCAinference"
#	     )

S3method(print, VCA)
S3method(coef, VCA)
S3method(residuals, VCA)
S3method(vcov, VCA)
S3method(as.matrix, VCA)
S3method(as.matrix, VCAinference)
S3method(ranef, VCA)
S3method(fixef, VCA)
S3method(print, VCAinference)
S3method(plot, VCA)
S3method(model.frame, VCA)
S3method(predict, VCA)
S3method(model.matrix, VCA)
	     
useDynLib(VCA,.registration=TRUE)
back to top