当应用于基本 R 图中的圆形点时,cex 是否缩放半径、直径或面积

does cex scale the radius, diameter, or area when applied to circular points in base R plots

图形参数 cex 确定基本 R 图中各种事物的大小,从标签到点大小。 cex = 1 是默认大小,cex = .5 小 50%,cex = 1.5 大 50%。我的问题是 cex 究竟使用什么来缩放圆点大小。例如,当 cex = 1.5 是否意味着该点的面积、半径或直径比默认值大 50%?

cex改变圆点大小的例子:

plot(x = 1:5, y = 1:5, type = "n")
points(x = 1:5, y = 1:5, pch = 21, cex = 1)
points(x = 1:5, y = 1:5, pch = 21, cex = 2)

它缩放半径(或者,等效地,直径)。

plot(x = -1:1, y = -1:1, type = "n")
points(0, 0, cex = 20)
points(0, 0, cex = 40)
abline(v=0)
abline(v=0.5)
abline(v=1)