在R导出的Excel中将数字作为列名而不是字符串值

时间:2018-04-06 10:05:33

标签: r

我在r中导出了一个没有标题的excel。

df = read.xlsx('D:/hotel rates/Yoho 5th Lane Signature 2799850.xls', sheetIndex = 1, header = FALSE)

然后将colnames更改为第二行值。

colnames(df) =df[2,]

但是我的专栏名称显示为数字如下。

enter image description here

其实我想要第二行作为我的名字。任何人都能解决这个问题吗?

我认为数据中存在某种因素水平。当我运行df[2,2]时,控制台显示以下内容。

enter image description here

0 个答案:

没有答案