Expressions not displaying some math text in R / Rstudio

95 Views Asked by At

Multiplication and division plotmath show up as empty boxes in the Rstudio IDE:

plot(1,2,main=expression('1'%*%10^-03))

enter image description here

Yet, if this is printed to a pdf, it is fine:

pdf("Figure.pdf",width=12,height=9)
plot(1,2,main=expression('1'%*%10^-03))
dev.off()

enter image description here Any idea what is going on here?

0

There are 0 best solutions below