Displaying 1 result from an estimated 1 matches for "pdgfr".
2004 Apr 19
1
using subscripts in a plot title with 2 lines
...t properly. The code I'm using is:
xtxt = expression(paste('Observed -log( ', IC[50], ' )'))
ytxt = expression(paste('Predicted -log( ', IC[50], ' )'))
mtxt = expression(paste('Plot of Observed vs. Predicted -log(',
IC[50], ') Values for the PDGFR\nDataset'))
plot(tset$V2, tset$V3, xlim = c(-2,2), ylim = c(-2,2),
pch = 19, col = "blue",
main=mtxt,
xlab = xtxt,
ylab = ytxt)
Removing the IC[50] term makes it come out OK.
Is there any way to get around this?
Thanks,
----------------------------------------...