yuu_nkjm blog
2010-07-18(Sun) [長年日記]
[R言語] ある分布からランダムにサンプルを取り出す
イディオム
書式 sample(x, size, replace = FALSE, prob = NULL) 引数 x : (数値、複素数、文字列、論理値)ベクトル。もしくは単一の整数(1:x と解釈) size : 選ばれる項目の数 (省略時は lenngth(x)) replace: 論理値。復元抽出か非復元抽出か? prob : 各項目を選び出す確率のベクトル(比率を与えるだけで良い)。省略時は等確率。 Rの確率分布システム - RjpWiki
使用例
hist(sample(c(0,1,2,3),1000,prob=c(100,100,300,500),replace=TRUE),freq=FALSE)
- 非復元抽出 java ×2 / sample(, , replace=TRUE) サンプル ×1 / r言語 ランダムサンプル ×1 / R ランダム sample ×1 / R サンプルをランダムに分割 ×1 / サンプルを取り出す ×1 / R ランダムにサンプル ×1