Bec*_*tin 31 r ggplot2 axis-labels
我需要ggplot2中的轴标签,其中读取"同化(μmolCO2m-2 s-1)",其中2的CO2作为下标,-2和-1作为上标.谢谢.
akr*_*run 81
你可以试试
library(ggplot2)
qplot(uptake, data = CO2) +
xlab(bquote('Assimilation ('*mu~ 'mol' ~CO[2]~ m^-2~s^-1*')'))
Run Code Online (Sandbox Code Playgroud)