Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何在 R 中创建带有自定义点的图?
我知道在 R 中你可以使用 plot 来指定点的颜色
plot(......,col="red")使散点图中的点,例如,红色。
plot(......,col="red")
如何指定点的边框颜色,使边框颜色与填充颜色不同。
您可以使用该bg参数来处理点的填充方式。在某些类型的绘图字符上,这将是可见的。例如...
bg
plot(1,1,col=3, bg=2, pch=23)