prob (version 1.0-1)

subset: Subsets of Probability Spaces

Description

This is a method for subset() for the case when the input object is a probability space of class ps.

Usage

subset(x, …)

# S3 method for ps subset(x, subset, ...)

Arguments

x

a probability space.

subset

logical expression indicating elements or rows of space to keep: missing values are taken as false.

further arguments to be passed to or from other methods.

Value

A ps object, a subset of a probability space.

Details

This function simply extends the existing subset() function to ps objects.

See Also

intersect, setdiff, union, isin

Examples

Run this code
# NOT RUN {
L <- tosscoin(2)
M <- urnsamples(L, 3)
N <- probspace(M)
subset(N, all(toss1=="H"))
subset(N, any(toss2=="T"))
# }

Run the code above in your browser using DataLab