## S3 method for class 'rv':
as.logical(x, \dots)
as.logical
is applied to all simulations.See also vignette("rv")
.
x <- rvbern(prob=0.5) # some 0/1 valued random variable
print(x)
is.logical(x) # FALSE, because by default x is 'double'
x <- as.logical(x) # coerce to logical; all zeros become FALSE, ones become TRUE
is.logical(x) # TRUE
print(x) # Shows the expectations and not the quantiles
Run the code above in your browser using DataLab