subset {prob} | R Documentation |
This is a method for subset()
for the case when the input object is a
probability space of class ps
.
subset(x, ...) ## S3 method for class 'ps': subset(x, subset, ...)
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. |
This function simply extends the existing subset()
function to ps
objects.
A ps
object, a subset of a probability space.
G. Jay Kerns gkerns@ysu.edu.
intersect
,
setdiff
,
union
,
isin
L <- tosscoin(2) M <- urnsamples(L, 3) N <- probspace(M) subset(N, all(toss1=="H")) subset(N, any(toss2=="T"))