Learn R Programming

IdMappingAnalysis (version 1.16.0)

as.data.frame.JointIdMap: Retrieve a data frame encapsulated within the given JointIdMap object

Description

Retrieve a data frame encapsulated within the given JointIdMap object with additional 'name' and 'secondaryKey' attributes

Usage

"as.data.frame"(x, row.names=NULL, optional=FALSE, ...)

Arguments

row.names
Not used
optional
Not used
...
Not used

Value

data.frame encapsulated within the given JointIdMap object. The data frame attributes 'name' and 'secondaryKey' contain the values of corresponding JointIdMap object data fields.

See Also

For more information see JointIdMap.

Examples

Run this code
 jointIdMap<-JointIdMap(examples$identDfList);
 df<-as.data.frame(jointIdMap);
 dim(df);
 attr(df,"secondaryKey");
 

Run the code above in your browser using DataLab