Displaying 1 result from an estimated 1 matches for "orsappli".
Did you mean:
orsapply
1997 Sep 13
1
R-alpha: compatibility
Two compatibility issues found while trying to convert a simulation from S
to R.
1. set.seed() We don't have this function. According to Venables &
Ripley it just picks a seed from a list of 1000 possibilities. How about
"set.seed" <-function (i)
{
if (any(i > 1000) | any(i < 1))
stop("argument to set.seed() must be in 1:1000")