代码尝试应用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
答案 0 :(得分:1)
它不是{}
# if you want to use sbuscript, use []
p + labs( y=expression(N[s]) )
# or as is
p + labs( y=expression(N_~'{s}') )