Reputation: 57
I want to show on my y-axis Leaf area index (m^2/m^2). However, on my plot, I can't see last bracket. I am just wondering what is wrong with the code?
ylab=expression( "Leaf area index (m"^2/ "m"^2),
Upvotes: 1
Views: 29
Reputation: 24790
One approach would be with bgroup
.
plot(1,1,ylab=expression("Leaf area index"~bgroup("(","m"^2/ "m"^2,")")))
Upvotes: 1