gpt4 book ai didi

r - 为函数中的每一列添加 xlab 的名称

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

在这个函数中,我想添加测试变量的列名。我不知道如何编码。欣赏指教! :)

set.seed(8)
score1 <- sample(1:100,6)
score2 <- sample(1:100,6)
score3 <- sample(1:100,6)
x <- sample(101:200,6)
df <- data.frame(score1, score2, score3, x)

test <- function(i){
plot(df[,i], df[,4], xlab=colnames(df[,i]), ylab="x")
}
test(1)
test(2)
test(3)

然后我想得到:

enter image description here
enter image description here

enter image description here

最佳答案

当您使用索引对列进行子集化时,没有附加列名。

df[, 1]
#[1] 96 52 55 79 12 42

colnames(df[, 1])
#NULL

因此,您将获得图中的默认 x 轴。

使用索引对列名进行子集。
test <- function(i){
plot(df[,i], df[,4], xlab=colnames(df)[i], ylab="x")
}

test(2)

enter image description here

关于r - 为函数中的每一列添加 xlab 的名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60703578/

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