Description Usage Arguments Details Value Examples
Simulates a coin flip.
1 |
coins |
The number of coins to flip. If unspecified, it defaults to 5. |
flips |
The number of flips. If missing, it defaults to 100. |
weights |
A vector of probability weights to assign to each face of the coin; if unspecified, it defaults to a fair coin with equally likely faces. If specified, its lenght must obviously be a vector of length two whose values sum up to 1. |
getExact |
A vector containing values to be matched exactly, namely the function returns only those combinations containing all the above mentioned variables. Since this is a coin flip, values must be specified in the form |
The function is a particular case of dice.roll
, namely a roll with 2 faces and 1 die.
A table containing the frequencies for each of the two occurrences (head and tail) after the specified number of flips.
1 | coin.flip(coins = 5, flips = 100)
|
value_1 value_2 value_3 value_4 value_5 freq
1: H H H H H 0.01
2: H H H H T 0.19
3: H H H T T 0.28
4: H H T T T 0.38
5: H T T T T 0.13
6: T T T T T 0.01
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.