powered by
Extracts useful information such as the counts or the actual intersections between several sets.
extractInfo( x, what = c("counts", "intersections", "both"), use.names = FALSE )
A dataframe, when extracting the counts or a list if extracting intersections.
A list object containing set elements
What to extract
Logical, use the set names to indicate intersections
set.seed(12345) x <- list(First = 1:20, Second = 10:30, Third = sample(25:50, 15)) extractInfo(x) # counts by default extractInfo(x, what = "intersections") extractInfo(x, what = "both")
Run the code above in your browser using DataLab