Random integer values simulation {Rfast2} | R Documentation |
Random integer values simulation
Description
Random integer values simulation.
Usage
Sample.int(n, size = n, replace = FALSE)
Sample(x, size, replace = FALSE)
Arguments
x |
A numeric vector for sampling. |
n |
This must be an integer value. The function will then draw random integer values from 1:n. |
size |
The number of integer values to sample. |
replace |
Do you want to sample with replacement? If yes, set this equal to TRUE. |
Details
The function does the same job, up to some level, with R's built-in fuction sample.int
.
Value
A vector with integer values.
Author(s)
Manos Papadakis.
R implementation: Manos Papadakis <papadakm95@gmail.com>. R documentation: Michail Tsagris <mtsagris@yahoo.gr>.
See Also
Examples
x <- Sample.int(10, 1000, replace = TRUE)
Sample(x,length(x))
[Package Rfast2 version 0.1.5.2 Index]