我想随机抽取一个数据集而不进行替换,并认为这很容易。对我来说不幸的是它不是,我无法在互联网上找到 R 代码来做到这一点。最终我得到了这个代码工作。它似乎过于复杂,但似乎确实有效。
set.seed(1234)
n.samples <- 10
my.grid <- read.table(text = '
state county y2000 y2001 y2002 y2003 y2004 y2005 y2006
A A 5 10 15 20 25 30 35
A B 15 20 25 30 35 40 45
A C 45 40 35 30 25 20 15
A Q 1 2 3 4 5 6 7
B A 9 8 7 6 5 4 3
B B 90 91 92 93 94 95 96
B G 10 20 30 40 50 60 70
B H 100 200 300 400 500 600 700
C J 900 850 800 750 700 650 600
C K 2 4 6 8 10 12 14
C M 3 6 9 12 15 18 21
C P 50 45 40 35 30 25 20
', header = TRUE)
my.grid
population <- expand.grid(row = c(seq(1,nrow(my.grid))),
col = c(seq(3,ncol(my.grid))))
rows <- seq(1, nrow(population))
sample <- sample(rows, n.samples, replace=FALSE)
use.these <- population[sample,]
use.these
measurement <- rep(NA, nrow(use.these))
my.area <- my.grid[use.these[,1], c(1:2)]
my.year <- names(my.grid)[use.these[,2]]
for(i in 1:nrow(use.these)) {
measurement[i] <- my.grid[use.these[i,1], use.these[i,2]]
}
my.samples <- data.frame(use.these, my.area, my.year, measurement)
my.samples
输出my.samples
:
row col state county my.year measurement
10 10 3 C K y2000 2
52 4 7 A Q y2004 5
50 2 7 A B y2004 35
51 3 7 A C y2004 25
69 9 8 C J y2005 650
81 9 9 C J y2006 600
1 1 3 A A y2000 5
18 6 4 B B y2001 91
79 7 9 B G y2006 70
39 3 6 A C y2003 30
有没有更好的方法,特别是在基地?我听说过这个sampling
包裹。由于我的代码似乎可以工作,而且我只是在寻求可能的更好方法,也许我不应该在此处发布此内容,尽管它似乎是一个常见且重要的主题。如果这不是一个合适的帖子,我可以删除它并将代码放在我的维基百科用户页面上。感谢您的任何建议。