rtailw {distTails} | R Documentation |
This function generates random deviates for the tailW distribution.
rtailw(n, threshold, scale, shape)
n |
Sample size. |
threshold |
Minimum value of the tail. |
scale |
Scale parameter. |
shape |
Shape parameter. |
Gives random deviates of the TailW. The length of the result is determined by n.
x <- rtailw(1000, 1, 2, 3)
hist(x, breaks = "FD")