我知道有些帖子提出了同样的问题,但代码对我不起作用。这是我目前的代码
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")
如您所见,我正在与colour = Species
进行分组。我只是想用相同的颜色围绕那些数据点做椭圆。