I would like to add the following xlab
and ylab
to my graph but need to have the 10
after the Log as subscript. See my R statement below. How can I modify it to accomplish that? I know you can use the expression command and also add the number in []
but after several trials I did not get it to work as wished.
title (xlab="Log 10 for total ASF genome copies", ylab="Cycle threshold value", outer=TRUE, line=3, family="serif")
You can use
paste
inside anexpression
to combine math and plain text:See also
?plotmath
.