从R中的列表中提取未命名的(?)元素

时间:2015-08-14 21:57:21

标签: r

Browse[1]> lmc
[[1]]

t test of coefficients:

                   Estimate Std. Error t value Pr(>|t|)
(Intercept)       0.0090841  0.0063588  1.4286 0.154840
m[, "FX_RET_28"]  0.1122490  0.1599463  0.7018 0.483705
m[, "FX_RET_42"]  0.1702606  0.1041854  1.6342 0.103944
m[, "FX_RET_51"] -0.4735956  0.2450406 -1.9327 0.054823 .
m[, "FX_RET_52"]  0.2475292  0.1458240  1.6975 0.091321 .
m[, "FX_RET_53"] -0.5569527  0.1945823 -2.8623 0.004699 **
m[, "FX_RET_60"] -0.3191905  0.2887157 -1.1056 0.270379
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Browse[1]> str(lmc)
List of 1
 $ : coeftest [1:7, 1:4] 0.00908 0.11225 0.17026 -0.4736 0.24753 ...
  ..- attr(*, "dimnames")=List of 2
  .. ..$ : chr [1:7] "(Intercept)" "m[, \"FX_RET_28\"]" "m[, \"FX_RET_42\"]" "m[, \"FX_RET_51\"]" ...
  .. ..$ : chr [1:4] "Estimate" "Std. Error" "t value" "Pr(>|t|)"
  ..- attr(*, "method")= chr "t test of coefficients"

我想将Estimate列拉出一个带有(Intercept)m[, "FX_RE_28"]等的向量作为元素的名称。我将不胜感激任何帮助。

由于

0 个答案:

没有答案