0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Rでわからなかった関数

Last updated at Posted at 2019-08-29

numeric

標本平均の標本分布を求める際に、標本抽出を10000回行った。

標本平均 <- numeric(length = 10000)

for (i in 1:10000){
標本 <- rnorm(n=10,mean=50,sd=10)
標本平均[i] <- mean(標本)
}

numeric(length = 10000)は10000回分の推定値を格納する「標本平均」という名前の変数を作るためのものである。
数値の入る引き出しを10000コ作るというイメージを持つとわかりやすい。各引き出しには1から10000までの通し番号がついている。その中に入っている値は、標本平均[1],標本平均[2],・・・・・標本平均[10000]というふうにすることで指定できる。

coef()

coefficients(obj) 回帰係数 (行列) を抽出.coef(obj) と省略できる.

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?