Learn R Programming

convdistr (version 1.6.1)

DISCRETE: Factory for a DISCRETE distribution object

Description

Returns an DISCRETE distribution object that sample from the vector p_supp of options with probability the vector of probabilities p_prob.

Usage

new_DISCRETE(p_supp, p_prob, p_dimnames = "rvar")

Value

An object of class DISTRIBUTION, DISCRETE

Arguments

p_supp

A numeric vector of options

p_prob

A numeric vector of probabilities.

p_dimnames

A character that represents the name of the dimension

Author

John J. Aponte

Examples

Run this code
myDistr <- new_DISCRETE(p_supp=c(1,2,3,4), p_prob=c(0.40,0.30,0.20,0.10))
myDistr$rfunc(10)

Run the code above in your browser using DataLab