参考链接
https://www.jianshu.com/p/a1610e465fef
代码
library(ggplot2)
ggplot(iris,aes(x=Sepal.Length,y=Sepal.Width))+
geom_point()+
stat_ellipse(aes(x=Sepal.Length,
y=Sepal.Width,
fill=Species,
color=Species),
geom = "polygon",
level = 0.95,
alpha=0.5)+
theme_bw()
结果
image.png
欢迎大家关注我的公众号
小明的数据分析笔记本