Reputation: 65
I am try to write "2 -ΔΔCT" in a Y axes in a graph. Please, note the letter "T" is subscripted in the expression "-ΔΔCT". This is the closest that I could do:
plot + ylab(expression(paste("2"^{-ddC[T]})))
Do you have any better suggestion?
Thanks
Upvotes: 1
Views: 1513
Reputation: 61154
Maybe something like this...
plot(1, ylab=expression(2^{-Delta* Delta*C[T]}))
which produces...
Upvotes: 1