comparelists {made4} | R Documentation |
This is a very simple function which compares two vectors, x and y. It returns the intersection and unique lists. It is useful for comparing two genelists.
comparelists(dx,dy, ...) print.comparelists(x, ...)
dx,dy |
A vector |
x |
An object from comparelists |
... |
further arguments passed to or from other methods |
reports on the intersect, difference and union between two lists.
An object of class comparelists
:
intersect |
Vector containing the intersect between x and y |
Set.Diff |
Vector containing the elements unique to X obtained using setdiff |
XinY |
Numeric, indicating the number of elements of x in y |
YinX |
Numeric, indicating the number of elements of y in x |
Length.X |
Numeric, the number of elements in x |
Length.Y |
Numeric, the number of elements in y |
... |
Further arguments passed to or from other methods |
Aedin Culhane
a<-sample(LETTERS,20) b<-sample(LETTERS,10) z<-comparelists(a,b) z$Set.Diff z$intersect