gpt4 book ai didi

R图: Print text on margin in top left corner

转载 作者:行者123 更新时间:2023-12-05 08:58:55 24 4
gpt4 key购买 nike

我有以下基本代码来绘制网格。

grid <- expand.grid( pi=seq(50, 95, 5) / 100, mu2=seq(5, .5, -.5) )
pi <- seq(44, 100, .5) / 100
par( mai=c(.05, .05, .05, .05), oma=c(2.9, 2.9, 0, 0) ) # Make room for label
plot( grid, cex=.5, xlab="", ylab="", cex.axis=.7 )

如何在左上角绘制一个文本标签,如红圈所示的“(A)”?

编辑:“(A)”应按常规(即水平)阅读方向打印;不垂直于 y 轴。

enter image description here

最佳答案

您可以使用 mtext 将文本放在边距之外:

##Look at the help page for further details    
mtext("A", 2, adj=1, line=2)

##To rotate "A", try
mtext("A", 2, adj=5, las=1, padj=-22)

得到:

enter image description here

关于R图: Print text on margin in top left corner,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19593768/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com