ポイントが塗りつぶされていない (または同等に、透明な塗りつぶしがある) 散布図を作成したいと考えています。
# 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))
への設定は論理的fill
にNA
思えますが、うまくいきませんでした。私も試しNULL
てみ""
ましたが無駄でした。