在ggplot2中更改轴标题时,绘图消失

时间:2017-11-16 15:27:28

标签: r plot ggplot2 axis-labels

当我尝试使用+labs('text')更改ggplot2图的轴标题时,图完全消失,我无法弄清楚原因。 也许你可以帮忙

所以我有以下数据框:

d <- read.table(text='samples variable       value
UT            F201/203   0.002558366
siCTL         F201/203   0.009112220
siF201/203    F201/203   0.004739938
UT            F203       0.010881532
siCTL         F203       0.022440469
siF201/203    F203       0.011569276
UT            F203/206   0.003923319
siCTL         F203/206   0.010474094
siF201/203    F203/206   0.004946134',   header=TRUE)

然后我使用:

创建箱图
pd<-ggplot (data=d, aes(x=samples, y=value)) 
 pd + geom_bar (aes(fill = variable),stat = "identity",position = "dodge")
这出来了 enter image description here

然后我想改变y轴标题(当我尝试更改x轴标题时会发生同样的情况):

pd + labs(y="relative expression")

然后情节完全消失了:

enter image description here

答案可能很简单,但我无法弄清楚为什么会这样。

谢谢

0 个答案:

没有答案