subsets {CombMSC} | R Documentation |
Generates all different subsets of size r chosen from n different elements.
subsets(n, r, v = 1:n)
n |
Numeric. Number of elements to choose from. |
r |
Numeric. Size of the desired subsets. |
v |
Vector. Numeric or character vector of size n with the
labels of the n elements to choose from. |
A matrix of dimension (N x r), where N is the total number of different combinations of r elements chosen from n possible.
This particular version of the function was taken from a message from Bill Venables to ‘r-help’ list on Sun, 17 Dec 2000.
Documentation based on subsets.Rd file in package BHH2 by Ernesto Barrios.
Bill Venables Bill.Venables@cmis.csiro.au
Venables, Bill. "Programmers Note", R-News, Vol 1/1, Jan. 2001. http://cran.r-project.org/doc/Rnews
combinations
of the gtools package.
subsets(5,3) subsets(5,3,letters) subsets(5,3,c(10,20,30,50,80))