以下のリストを生成しましたが、cor 値 (最後の値) のみを抽出したいと考えています。それを行う方法はありますか?$estimate を使用してそれを実行しようとしましたが、役に立ちませんでした。助けてくれてありがとう。
[[6]]
Pearson's product-moment correlation
data: cer[, x] and par[, y]
t = 109.0053, df = 1898, p-value < 2.2e-16
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
0.9221188 0.9345283
sample estimates:
cor
0.9285826 #this value
str(リスト)からの出力:
$ :List of 9
..$ statistic : Named num 68.5
.. ..- attr(*, "names")= chr "t"
..$ parameter : Named int 1898
.. ..- attr(*, "names")= chr "df"
..$ p.value : num 0
..$ estimate : Named num 0.844
.. ..- attr(*, "names")= chr "cor"
..$ null.value : Named num 0
.. ..- attr(*, "names")= chr "correlation"
..$ alternative: chr "two.sided"
..$ method : chr "Pearson's product-moment correlation"
..$ data.name : chr "cer[, x] and par[, y]"
..$ conf.int : atomic [1:2] 0.83 0.856
.. ..- attr(*, "conf.level")= num 0.95
..- attr(*, "class")= chr "htest"