Is there any way to remove the seed value? I just ran a sample code as below
set.seed(912)
sample(10)
I got below result.
[1] 5 8 2 10 9 3 4 7 1 6
Now how do I stop the seed value. I closed my R session without saving and ran the same code as above after re-opening and got the result in same sequence.
I got below code from one of the questions related to seed but that also didn't work.
set.seed(Sys.time())