Dylan_Gomes
Dylan_Gomes

Reputation: 2232

Expressions not displaying some math text in R / Rstudio

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?

Upvotes: 0

Views: 130

Answers (0)

Related Questions