random: Draw a random sample from a probability distribution

View source: R/methods.R

randomR Documentation

Draw a random sample from a probability distribution

Description

Generic function for drawing random samples from distribution objects.

Usage

random(x, n = 1L, drop = TRUE, ...)

## S3 method for class 'distribution'
simulate(object, nsim = 1L, seed = NULL, ...)

Arguments

x, object

An object. The package provides methods for distribution objects such as those from Normal() or Binomial() etc.

n, nsim

The number of samples to draw. Should be a positive integer. Defaults to 1L.

drop

logical. Should the result be simplified to a vector if possible?

...

Arguments passed to methods. Unevaluated arguments will generate a warning to catch mispellings or other possible errors.

seed

An optional random seed that is to be set using set.seed prior to drawing the random sample. The previous random seed from the global environment (if any) is restored afterwards.

Details

random is a new generic for drawing random samples from the S3 distribution objects provided in this package, such as Normal or Binomial etc. The respective methods typically call the "r" function for the corresponding distribution functions provided in base R such as rnorm, rbinom etc.

In addition to the new random generic there is also a simulate method for distribution objects which simply calls the random method internally.

Value

Random samples drawn from the distriubtion x.

Examples

## distribution object
X <- Normal()
## 10 random samples
random(X, 10)

alexpghayes/distributions documentation built on Feb. 10, 2024, 9:50 a.m.