如何围绕三组点绘制三个椭圆

时间:2017-11-30 10:47:51

标签: r ggplot2 ellipse

我知道有些帖子提出了同样的问题,但代码对我不起作用。这是我目前的代码

ggplot(iris, aes(x = iris$Petal.Length + iris$Petal.Width, 
y = iris$Sepal.Length + iris$Sepal.Width)) + 
geom_point(aes(colour = Species)) + 
xlab("Component 1") +      
ylab("Component 2") + 
ggtitle("Clustering by Species") + 
theme(panel.background = element_rect(fill = 'white'), 
legend.position = "bottom")

enter image description here

如您所见,我正在与colour = Species进行分组。我只是想用相同的颜色围绕那些数据点做椭圆。

0 个答案:

没有答案