combocalc | R Documentation |
Calculate the number of combinations or permutations for a number of objects.
combocalc (objects, choose, order = FALSE, repetition = TRUE)
objects |
The number of different kinds of objects available for selection. |
choose |
The number of objects selected at a given time. |
order |
If TRUE, the order of the objects matters, for example aba != aab. |
repetition |
If TRUE, a sequence such as bbb is permissible. |
Santiago Barreda <sbarreda@ucdavis.edu>
# combinations, no repetition
combocalc (10, 4, order = FALSE, repetition = FALSE)
# combinations, with repetition
combocalc (10, 4, order = FALSE, repetition = TRUE)
# permutations, no repetition
combocalc (10, 4, order = TRUE, repetition = FALSE)
# permutations, with repetition
combocalc (10, 4, order = TRUE, repetition = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.