我查看了其他一些帖子,但我仍然无法弄清楚如何做一些简单的事情。
假设:
x <- c(1,2,3,4,5,6,7,8,9)
y <- c(2,4,6,8,10,12,14,16,18)
a <- 23.54
现在我要绘制:
plot(x, y, main=c("Interesting Title", a))
然而,这将23.54放在新线上,将其视为第二个冠军。我怎样才能在一行中制作它?
由于
答案 0 :(得分:7)
尝试main=paste("Interesting Title", a)