getStats.IdMapCounts {IdMappingAnalysis} | R Documentation |
Retrieves a set of unique counts of secondary IDs over the all ID Maps and then computes the number of entries and percentage corresponding to each count for all ID Maps within the given object
## S3 method for class 'IdMapCounts' getStats(this, percent=TRUE, digits=1, summary=FALSE, cutoff=3, verbose=FALSE, ...)
idCounts |
IdMapCounts object or a list of objects on which summary is computed |
percent |
logical indicating wherether the percentage column(s) should be included into summary |
digits |
integer indicating the number of decimal places in percentage column |
summary |
if |
cutoff |
If summary is |
verbose |
|
... |
Not used |
Data frame representing a set of unique counts of secondary IDs. if summary is FALSE, the resulting data frame represent the number of entries and percentage corresponding to each count for all ID Maps within the object. If summary is TRUE, the resulting data frame represent the formatted summary of count statistics, including summarized data for counts grater than cutoff, maximum number of secondary IDs per primary ID and the total number of secondary IDs for each DB within the IdMapCounts object.
Alex Lisovich, Roger Day
For more information see IdMapCounts
.
jointIdMap<-JointIdMap(examples$identDfList); cnts<-jointIdMap$getCounts(verbose=TRUE); cnts$getStats(); cnts$getStats(summary=TRUE,cutoff=4);