gpt4 book ai didi

r - 如何设置矩阵行标题名称和列标题名称?

转载 作者:行者123 更新时间:2023-12-04 09:33:42 25 4
gpt4 key购买 nike

我有一个如下所示的矩阵:

> m <- cbind( c(1, 0), c(1, 1) )
> rownames(m) <- c('ON', 'OFF')
> colnames(m) <- c('ON', 'OFF')
> m

ON OFF
ON 1 1
OFF 0 1

如何为行和列提供标题名称?例如。
                  thermostat
ON OFF
motion_sensor ON 1 1
OFF 0 1

我看了 ?dimnames但无法看到/理解如何做到这一点。

最佳答案

试试 names . dimnameslist .在您的示例中,list 没有名称。元素,可以使用 names 分配

 names(dimnames(m)) <- c('motion_sensor', 'thermostat')
m
# thermostat
#motion_sensor ON OFF
# ON 1 1
# OFF 0 1

关于r - 如何设置矩阵行标题名称和列标题名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30999981/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com