除了提到“填充”与“坚实”之外,我找不到任何文档。
library(graphics)
plot.new()
points(.48, .5, pch=19)
points(.52, .5, pch=16)
编辑:温斯顿张的解释回答我的问题非常彻底https://github.com/hadley/ggplot2/issues/1757#issuecomment-247804365
来自哈德利的新书R for Data Science:请注意,有一些看似重复:0,15和22都是正方形。不同之处在于颜色和填充美学的相互作用。中空形状(0-14)具有由颜色确定的边界;实心形状(15-18)充满了颜色;填充的形状(21-24)具有颜色边框并填充填充。
这可能有所帮助:
pch的值在内部存储为整数。解释是
NA_integer_: no symbol.
0:18: S-compatible vector symbols.
19:25: further R vector symbols.
26:31: unused (and ignored).
32:127: ASCII characters.
128:255 native characters only in a single-byte locale and for the symbol font. (128:159 are only used on Windows.)
-32 ... Unicode code point (where supported).
全文是here