我知道如果我有一个多于一列的数据框,我可以使用
colnames(x) <- c("col1","col2")
重命名列。如果只有一栏,该怎么办?表示其中仅包含一列的向量或数据帧。
例:
trSamp <- data.frame(sample(trainer$index, 10000))
head(trSamp )
# sample.trainer.index..10000.
# 1 5907862
# 2 2181266
# 3 7368504
# 4 1949790
# 5 3475174
# 6 6062879
ncol(trSamp)
# [1] 1
class(trSamp)
# [1] "data.frame"
class(trSamp[1])
# [1] "data.frame"
class(trSamp[,1])
# [1] "numeric"
colnames(trSamp)[2] <- "newname2"
# Error in names(x) <- value :
# 'names' attribute [2] must be the same length as the vector [1]
drop=TRUE
默认参数感到困惑,该默认参数[
导致将“ 1列”对象转换为向量...而向量没有colnames
。您尝试过的例子将非常有帮助。