如何生成我的示例中未包含的元素
how to generate elements not included in my sample
这有点微不足道,但我如何生成样本中未包含的 x 中的数字集。
x=rnorm(6,0,1)
k=sample(x,3)
不是对值进行采样,而是对索引进行采样。
set.seed(15)
(x <-rnorm(6,0,1))
# [1] 0.2588229 1.8311207 -0.3396186 0.8971982 0.4880163 -1.2553858
idx <- sample(length(x),3)
(selected <- x[idx])
# [1] 0.8971982 -1.2553858 0.4880163
(notselected <- x[-idx])
# [1] 0.2588229 1.8311207 -0.3396186
这有点微不足道,但我如何生成样本中未包含的 x 中的数字集。
x=rnorm(6,0,1)
k=sample(x,3)
不是对值进行采样,而是对索引进行采样。
set.seed(15)
(x <-rnorm(6,0,1))
# [1] 0.2588229 1.8311207 -0.3396186 0.8971982 0.4880163 -1.2553858
idx <- sample(length(x),3)
(selected <- x[idx])
# [1] 0.8971982 -1.2553858 0.4880163
(notselected <- x[-idx])
# [1] 0.2588229 1.8311207 -0.3396186