Ich erzeuge ein Diagramm für mehrere Datensätze. Jeder der Datensätze sollte eine eigene Legende erhalten, die griechische Buchstaben, Plotmath-Symbole oder Sub- und Superscribion enthalten kann. Ich möchte die Legendentexte in einer Schleife erzeugen.Verwenden Sie Sub-/hochgestellte und Sonderzeichen in Legendentexten von R-Plots
Bquote funktioniert gut, wenn nur ein Legendentext vorhanden ist. Wenn ich versuche, additinal Legende Texte hinzufügen, die plotmath-commads verloren, ...
x <- 0:10
y1 = x * x
y2 = x * 10
plot (1,1, type="n", xlab=bquote(Omega), ylab="Y", las=1, xlim=range(x), ylim=range(y1, y2))
lines(x, y1, col=1, pch=1, type="b")
lines(x, y2, col=2, pch=2, type="b")
# generate legend texts (in a loop)
legend_texts = c(
bquote(Omega^2)
, bquote(Omega%*%10)
)
# Using a single bquote works fine:
#legend_texts = bquote(Omega^2)
#legend_texts = bquote(Omega%*%10)
legend(
"topleft"
, legend = legend_texts
, col = c(1:2)
, pch = c(1:2)
, lty = 1
)
+1 für reproduzierbares Beispiel! – A5C1D2H2I1M1N2O1R2T1