Learn R Programming

splusTimeDate (version 2.5.0-137)

groupVecData: groupVec Class Data Access

Description

Accesses the data list of a groupVec object.

Usage

groupVecData(object)

Arguments

object
the object to access.

Value

returns the data list of object.

Details

The function returns the columns slot of object.

You can use it on the left side of an assignment, in which case the columns slot is replaced, with some validity checking. Also, if the new value has a different length than the old one, the column names and classes are extended or truncated appropriately, with the column classes for new columns derived from the class of the new data in the columns.

See Also

groupVecColumn, groupVecNames, groupVecClasses, groupVec class.

Examples

Run this code
obj <- new("groupVec") 
groupVecData(obj) <- list(c(1,2,3), c("a", "b", "c")) 
groupVecData(obj) 

Run the code above in your browser using DataLab