burst | R Documentation |
Determine all r-vectors with nonnegative integer entries summing to n. Note that this is not intended to be optimized.
burst(n, r = n)
n |
integer to sum to |
r |
number of components |
a matrix whose rows are the n-tuples
burst(3)
burst(3, 1)
burst(3, 2)
burst(3, 3)
burst(3, 4)
rowSums(burst(4))
rowSums( burst(3, 2) )
rowSums( burst(3, 3) )
rowSums( burst(3, 4) )
burst(10, 4) # all possible 2x2 contingency tables with n=10
burst(10, 4) / 10 # all possible empirical relative frequencies
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.