作图时行列名中包含空格报错的处理方法

2023-03-17 02:09:16腾讯云


【资料图】

title: "作图时行列名中包含空格的处理方法"

output: html_document

date: "2023-03-14"

当作图时行列名中包含了空格等特殊字符时,R语言会报错,如下

library(ggplot2)dat <- iriscolnames(dat)[1] <- "a b"ggplot(dat,aes(a b,Sepal.Width))+  geom_point()
## Error: :4:18: unexpected symbol## 3: colnames(dat)[1] <- "a b"## 4: ggplot(dat,aes(a b##                     ^

将包含空格的行列名加上(反引号,英文输入模式下按“~”键)可以解决报错的问题如下

library(ggplot2)dat <- iriscolnames(dat)[1] <- "a b"ggplot(dat,aes(`a b`,Sepal.Width))+  geom_point()

引用自生信技能树

标签:

企业

全面取消落户限制!30个城市城区常住人口超300万
2022-03-21
详细行程
2022互联网岳麓峰会因防控原因延期召开
2022-03-21
详细行程
河北激活数据要素潜能 打造数字经济新动能
2022-03-18
详细行程