Learn R Programming

algebraic.dist (version 0.9.1)

sampler.weibull_dist: Sampler for a Weibull distribution.

Description

Returns a function that draws n independent samples from the Weibull distribution.

Usage

# S3 method for weibull_dist
sampler(x, ...)

Value

A function function(n = 1, ...) returning a numeric vector of length n.

Arguments

x

A weibull_dist object.

...

Additional arguments (not used).

Examples

Run this code
x <- weibull_dist(shape = 2, scale = 3)
s <- sampler(x)
set.seed(42)
s(5)

Run the code above in your browser using DataLab