Description Usage Arguments Examples
Get all common cases by expression for a list
1 | list.common(.data, expr)
|
.data |
|
expr |
An anonymous (or "lambda") expression to determine common cases. If one
is not specified, |
1 2 3 4 5 6 7 8 9 10 | x <- list(c('a','b','c'),c('a','b'),c('b','c'))
list.common(x, .)
x <- list(p1 = list(type='A',score=list(c1=10,c2=8)),
p2 = list(type='B',score=list(c1=9,c2=9)),
p3 = list(type='B',score=list(c1=9,c2=7)))
list.common(x,type)
list.common(x,names(score))
foo <- list(x = LETTERS[1:3], y = LETTERS[3:5])
list.common(foo)
|
[1] "b"
character(0)
[1] "c1" "c2"
[1] "C"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.