作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题在这里已经有了答案:
Subsetting a matrix by row.names
(3 个回答)
3年前关闭。
给定一个 matrix
目的:
Browse[2]> class(coldists)
[1] "matrix"
Browse[2]> coldists
pregnant glucose diastolic skin insulin bmi pedigree age
estimate Numeric,2 Numeric,2 Numeric,2 Numeric,2 Numeric,2 Numeric,2 Numeric,2 Numeric,2
method "mle" "mle" "mle" "mle" "mle" "mle" "mle" "mle"
sd Numeric,2 Numeric,2 Numeric,2 Numeric,2 Numeric,2 Numeric,2 Numeric,2 Numeric,2
cor Numeric,4 Numeric,4 Numeric,4 Numeric,4 Numeric,4 Numeric,4 Numeric,4 Numeric,4
vcov Numeric,4 Numeric,4 Numeric,4 Numeric,4 Numeric,4 Numeric,4 Numeric,4 Numeric,4
loglik -2022.201 -3750.272 -3364.823 -3216.296 -4734.98 -2675.054 -240.8774 -2982.152
[ reached getOption("max.print") -- omitted 11 rows ]
Browse[2]> coldists$estimate
NULL
RStudio
编辑器或终端
tab
或者空格键输入后没有任何建议
colname
变量名。可能有一种通用方法可以在此处获取我缺少的帮助/变量详细信息。例如。那些怎么可能
rownames
如
estimate
,
method
等被访问?
最佳答案
如评论中所述,但有一个工作示例:
m <- matrix(1:6, 2)
rownames(m) <- c("A", "B")
m["B", ]
# [1] 2 4 6
关于r - 如何从 R 矩阵按名称访问行和列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48614511/
我是一名优秀的程序员,十分优秀!