21

我想制作一个散点图,其点没有填充(或等效地,有透明填充)。

# generate some random data for the scatterplot
n <- 5
f <- factor(1:n)
df <- expand.grid(f1 = f, f2 = f)
df <- transform(df, v1 = round(10 * runif(n ** 2)))

# plot the scatterplot
ggplot(df) + geom_point(aes(x = f1, y = f2, size = v1, fill = NA))

设置fillNA似乎合乎逻辑但不起作用。我也尝试过NULL""但无济于事。

4

2 回答 2

30

我认为您想玩形状但可能是错误的:

ggplot(df) + geom_point(aes(x = f1, y = f2, size = v1), shape=1)

或许...

ggplot(df) + geom_point(aes(x = f1, y = f2, size = v1), fill="green", shape=21)

如果你想填充颜色。

于 2013-03-31T06:20:10.740 回答
8

在更高版本的 ggplot (ggplot2_3.0.0) 中,您可以使用任何形状执行以下操作:

    ggplot(df) +
      geom_point(aes(x = f1, y = f2, size = v1, shape = v1)) +
      scale_shape(solid = FALSE)
于 2018-08-09T21:05:22.597 回答