2013-05-30 46 views
1

我想同時使用一個變量和數學格式的價值經典(無GGPLOT2)的題圖中R.標題和文本格式 - 同時使用變量和標

我找到了解決方案在標題中包含變量的內容,但不包含上標。

number <- c('first','second','third') 
plot(1:10,1:10) 
title(main=paste(substitute(x,list(x=number[1])),' plot, units are in km m-3')) 

我還發現了一個解決方案,做相反:

plot(1:10,1:10) 
title(main=expression(paste(number[1],' plot, units are in km ',m^{-3}))) 

然而,這是非常經驗性的,因爲我的大腦完全表達這一切的觀念搞砸,分析,報價,plotmath ,替代,...

如果你比我更瞭解這個,你會提出一個簡單的解決方案嗎?

謝謝

弗朗索瓦

回答

4

bquote可能的解決方案:

plot(1:10, 1:10) 
title(main = bquote(.(number[1]) ~ "plot, units are in km" ~ m^-3)) 

enter image description here

+0

謝謝你,我才發現我們可以用 「〜」 與bquote – fstevens