为什么这个R ggplot下标不起作用?

时间:2016-11-20 16:03:54

标签: r ggplot2 axis-labels

代码尝试应用then()时出现以下错误

g + labs(y=expression(N_{s}))

我得到了

g <- ggplot(datm, aes(variable, value, fill=gender)) + geom_bar(stat="identity", position = position_dodge()) + facet_grid(male.Nij ~ group) + xlab("Association type") + ggtitle("View")
#http://stackoverflow.com/a/17335258/54964
g + labs( y=expression(N_{s}) )

R:3.3.2 backports
操作系统:Debian 8.5

1 个答案:

答案 0 :(得分:1)

它不是{}

# if you want to use sbuscript, use []
p + labs( y=expression(N[s]) )
# or as is
p + labs( y=expression(N_~'{s}') )