我的目標是在我的圖例中有多行看起來像這種格式的Nsubscript(M),Nsubscript(F)。下標將用於使我的傳說速記。將會有變量需要評估以獲取數值。如何用下標和變量製作多行圖例?爲R圖的多個圖例使用下標和變量
我需要得到多個bquotes才能工作。下面的格式是我想要的圖例部分。
#this works
N_male<-4#random variable
N_female<-6#random variable
plot(x=2,y=3)#random plot
legend("topright",legend=bquote('N'['F']*' = '*.(N_female)),
text.col="black",box.col=0, bty="n", cex = .75, lty= c(2)) #this legend has
#correct syntax
但是我需要讓多個bquotes在同一個圖例中工作。我怎麼做?
#this does not work
N_male<-4#random variable
N_female<-6#random variable
plot(x=2,y=3)
legend("topright",legend=c(bquote('N'['M']*' = '*.(N_male)),
bquote('N'['M']*' = '*.(N_female))),
text.col="black",box.col=0, bty="n", cex = .75, lty= c(1,2)) #this legend does not evaluate the bquote part
不要編輯問題標題,包括對問題情況的意見。如果答案解決了您的問題,請單擊旁邊的複選標記,問題將自動標記爲「已解決」。 – joran