Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 sample() 函数在 R 中生成 radnom 数据。
x<-1:12 sample(x) [1] 10 9 4 3 12 11 8 6 1 2 5 7 x<-1:12 sample(x) [1] 2 6 8 12 10 11 1 3 5 7 9 4
我在两个不同的电话中得到不同的设置。有没有办法生成相同的记录集?
问候
使用set.seed(1)(或任何数字)
set.seed(1)
> set.seed(1) > sample(x) [1] 4 5 6 9 2 7 10 12 3 1 11 8