#load the ggplot2 library
library(ggplot2)
#set the seed so we can reproduce the results ##让样本可重复
set.seed(1410)
#create a variable that is the first 100 rows of the diamonds dataset
dsmall <- diamonds[sample(nrow(diamonds), 100), ]
set.seed 中的 1410,取这个数字有特殊的意义吗?是不是也可以取个随机数?
我在网络上搜索到一些解释:
1.设置随机数种子。
2.就是设定随机数,保证下次生成的随机数和前面的一样
小白不是特别明白,求教。谢谢
1
marenight 2017-05-25 14:15:38 +08:00 via iPhone 1
数字随便取,不过要想取得一致的随机结果,种子需要一样
|
2
srlp 2017-05-25 17:44:21 +08:00
随便。不 set.seed 也可以
|