Christofer Bogaso
2018-11-29 19:13:35 UTC
Hi,
I would like to draw an Integer from a range of [10, 1000] inclusive,
however that random integer should be outside of a pre-defined vector of
integers.
Let say I draw an integer as below
as.integer(runif(1, 10, 1000))
and my pre-defined vector is
Vec = c(563, 453, 897, 567)
The policy is my drawn random integer should never be equal to any item
from Vec
Ofcourse I can use ifelse() to achieve the same, however I was wondering if
there is any direct way to get the same.
Thanks,
[[alternative HTML version deleted]]
______________________________________________
R-***@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
I would like to draw an Integer from a range of [10, 1000] inclusive,
however that random integer should be outside of a pre-defined vector of
integers.
Let say I draw an integer as below
as.integer(runif(1, 10, 1000))
and my pre-defined vector is
Vec = c(563, 453, 897, 567)
The policy is my drawn random integer should never be equal to any item
from Vec
Ofcourse I can use ifelse() to achieve the same, however I was wondering if
there is any direct way to get the same.
Thanks,
[[alternative HTML version deleted]]
______________________________________________
R-***@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.