Summary Method for recordDesign Objects

DESCRIPTION:

Gives a template for a complete cluster and indicates which (if any) records are complete in a recordDesign object.

USAGE:

summary(object) 

REQUIRED ARGUMENTS:

object
an object of class "recordDesign", which is basically a data frame with auxiliary information identifying clusters and records within clusters.

VALUE:

A list with the following components:

complete.cluster
A data frame in which the variables are the record variables (if any) specified in the call to recordDesign and the integer replicateID and recordID produced by recordDesign for a complete cluster.
summary.cluster
A data frame with one row for each cluster, in which the variables are the cluster variables specified in the call to recordDesign , the integer clusterID produced by recordDesign , the number of records in each cluster, and a logical variable indicating whether or not the cluster has a complete set of records.

SEE ALSO:

, .

EXAMPLES:

summary(recordDesign(cluster="Dog",data=Pixel))
summary(recordDesign(cluster="Dog",data=Pixel,record="Side"))
summary(recordDesign(cluster="Dog",data=Pixel,record="day"))
summary(recordDesign(cluster="Dog",data=Pixel,record=c("Side","day")))
summary(recordDesign(cluster=c("Dog","Side"),data=Pixel,record="day"))