置換せずにデータセットをランダムにサンプリングしたかったので、簡単だと思いました。残念ながら、そうではなく、インターネット上で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
パッケージについて聞いたことがあります。私のコードは機能しているようで、可能な限りより良いアプローチを求めているだけなので、これをここに投稿するべきではありませんが、一般的で重要なトピックのようです。これが適切な投稿でない場合は、それを削除して、ウィキペディアのユーザーページにコードを配置できます。提案ありがとうございます。