|
DATA MINING
Desktop Survival Guide by Graham Williams |
|
|||
R does not support multi-line expressions but you can get the same effect by adding them separately through calls to title.
pdf("graphics/rplot-titles.pdf")
plot(1:10)
title("Golden Section", line=3)
title(expression(fn:(phi^2-phi-1)), line=2)
dev.off()
|