如何在 R 中的绘图上放置多行文本,包括上标
How to place multiple lines of text on plot, including superscript, in R
在这个样本地块上
plot(1:10)
我想在右下方区域放置三行:
slope=xx
P=yy
R^2=zz
R^2 中带有上标“2”。我尝试了一些使用 text 和 bquote 的东西,但我无法让它全部工作。有人知道怎么做吗?
你可以使用 text():
plot(1:10)
text(8,2,"slope=xx")
text(8,1.5,"P=yy")
text(8,1,expression(R^2== zz)) # you can use expression() for superscripts
在这个样本地块上
plot(1:10)
我想在右下方区域放置三行:
slope=xx
P=yy
R^2=zz
R^2 中带有上标“2”。我尝试了一些使用 text 和 bquote 的东西,但我无法让它全部工作。有人知道怎么做吗?
你可以使用 text():
plot(1:10)
text(8,2,"slope=xx")
text(8,1.5,"P=yy")
text(8,1,expression(R^2== zz)) # you can use expression() for superscripts