In ggbiplot.r around lines 261-268 I replaced code using geom_path() with geom_polygon() so that the ellipses for the groups could be filled. Yet, in testing, this has no effect (ellipses are unfilled). What is wrong here?
I want to make this optional, so I'd add an argument, ellipse.fill = T / F / alpha, but I have to get this working first.
g <- g + geom_polygon(data = ell,
aes(color = groups,
fill = groups
),
alpha = 0.4, # MF: why doesn't this have any effect?
linewidth = ellipse.linewidth)
Code to test any changes in your local copy of this repo:
In
ggbiplot.r
around lines 261-268 I replaced code usinggeom_path()
withgeom_polygon()
so that the ellipses for the groups could be filled. Yet, in testing, this has no effect (ellipses are unfilled). What is wrong here?I want to make this optional, so I'd add an argument,
ellipse.fill = T / F / alpha
, but I have to get this working first.Code to test any changes in your local copy of this repo: