Rdice (version 1.0.0)

dice.roll: Dice simulator

Description

Simulates rolling of a set of dice.

Usage

dice.roll(faces, dice, rolls, weights)

Arguments

faces
The number of faces the dice have; if unspecified, it defaults to 6.
dice
The number of dice to roll; if unspecified, it defaults to 2.
rolls
The number of times to roll the die; if unspeciefid, it defaults to 5.
weights
A vector of probability weights to assign to each face of the die; if unspecified, it defaults to a fair die with weights $1/N$. If specified, its lenght must obviously be equals to the number of faces and all the single weights must sum up to 1.

Value

Details

The function returns an object of class diceRoll, namely a list whose values are themselves data.table objects, in turn, so that one can directly apply any data.table function thereupon.

Examples

Run this code
dice.roll(faces = 6, dice = 3, rolls = 5)

Run the code above in your browser using DataCamp Workspace