outcomes: Outcomes of random variable X

Description Usage Arguments Value Examples

Description

Obtain the list of outcomes from a random variable

Usage

1

Arguments

X

random variable

Value

vector of outcomes of X

Examples

1
2
3
4
5
6
7
8
X.Bern <- RV(c(1,0), c(.5,.5))
outcomes(X.Bern)

X.fair.die <- RV(1:6, rep(1/6,6))
outcomes(X.fair.die)

X.loaded.die <- RV(1:6, odds = c(1,1,1,1,2,4))
outcomes(X.loaded.die)

Example output

Attaching package: 'discreteRV'

The following object is masked from 'package:base':

    %in%

[1] 1 0
[1] 1 2 3 4 5 6
[1] 1 2 3 4 5 6

discreteRV documentation built on May 2, 2019, 11:04 a.m.