我试图在散点图中绘制100k点。由于点周围的线宽太大,我无法区分这些点。有没有办法删除这一行或减少行的宽度?
plot(x=A,
y=C,
Geom.point,
Theme(panel_fill=color("black"),
default_point_size=2pt,
default_color=color("red")));
答案 0 :(得分:4)
您可以使用highlight_width=0pt
(找到here):
N = 10^4
A = rand(N)
B = rand(N)
plot(x = A,
y = B,
Geom.point,
Theme(panel_fill = colorant"black",
default_point_size = 2pt,
default_color = colorant"red",
highlight_width = 0pt)
)