how to insert subscript in plots in r

Solutions on MaxInterview for how to insert subscript in plots in r by the best coders in the world

showing results for - "how to insert subscript in plots in r"
Ella
19 Apr 2019
1plot(1,1, main=expression('title'^2))  #superscript
2plot(1,1, main=expression('title'[2])) #subscript
3
4expression("Global Irradiance (W/m"^"2"*")")