as.data.frame.JointIdMap {IdMappingAnalysis}R Documentation

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

## S3 method for class 'JointIdMap'
as.data.frame(x, row.names=NULL, optional=FALSE, ...)

Arguments

row.names

Not used

optional

Not used

...

Not used

Value

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

Author(s)

Alex Lisovich, Roger Day

See Also

For more information see JointIdMap.

Examples

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

[Package IdMappingAnalysis version 1.24.0 Index]