答案 0 :(得分:1)
我只用Google搜索了“ spatstat比例尺”,第二个命中是the help file for yardstick(),而第一个命中涉及的是码尺的绘制方法。帮助文件的标题为“标准:图表中的文本,箭头或比例尺”。也许这就是您想要的。
例如:
library(spatstat)
W <- union.owin(owin(c(0,1),c(0,5)), owin(c(0,5),c(4,5)))
X <- runifpoint(100, win = W)
plot(X, main = "")
y <- yardstick(3,1,4,1, txt = "1 unit")
plot(y, add = TRUE)
由reprex package(v0.2.1)于2018-11-11创建