Random values simulation from the uniform distribution {Rfast2} | R Documentation |
Random values simulation from the uniform distribution
Description
Random values simulation from the uniform distribution.
Usage
Runif(n, min = 0, max = 1)
Arguments
n |
The number of values to generate. |
min |
The lower value of the uniform distribution. |
max |
The upper value of the uniform distribution. |
Details
This function does the same job as R's built-in function runif
.
Value
A vector with simulated values.
Author(s)
Manos Papadakis.
R implementation and documentation: Manos Papadakis <papadakm95@gmail.com>.
See Also
Examples
x <- Runif(1000, 0, 1)
[Package Rfast2 version 0.1.5.2 Index]