R/dim-methods.R

Defines functions dim.maigesANOVA dim.maiges dim.maigesRaw dim.maigesPreRaw

Documented in dim.maiges dim.maigesANOVA dim.maigesPreRaw dim.maigesRaw

## Define methods for dim generic function
##
## Gustavo H. Esteves
## 10/05/07
##
##


## For maigesPreRaw class
dim.maigesPreRaw <- function(x)
    c(length(x@Glabels[,1]), length(x@Slabels[,1]))


## For maigesRaw class
dim.maigesRaw <- function(x)
    dim(x@Sf)


## For maiges class
dim.maiges <- function(x)
    dim(x@W)


## For maigesANOVA class
dim.maigesANOVA <- function(x)
    dim(x@W)

Try the maigesPack package in your browser

Any scripts or data that you put into this service are public.

maigesPack documentation built on Nov. 8, 2020, 6:23 p.m.