gpt4 book ai didi

使用 stat_ellipse ggplot2 时删除某些组的置信椭圆

转载 作者:行者123 更新时间:2023-12-05 02:59:11 29 4
gpt4 key购买 nike

您有一个包含多个组(例如 10 个)的散点图。您为各组绘制 95% 置信度椭圆。

问题:你不需要看到所有组的置信度椭圆(因为没有必要或者因为其中一些点很少,导致巨大的椭圆)

问题:如何去除确定组的置信椭圆,同时保持散点图上的点?

例子:在此代码中,您希望删除 versicolor 的置信度椭圆,但保留点的颜色并保留其他椭圆

ggplot(iris, aes(Sepal.Length, Sepal.Width, color = Species)) +
geom_point() +
stat_ellipse(aes(color = Species)) +
theme(legend.position = "bottom")

Example

最佳答案

Z.lin 的回答中的图例并不准确,因为即使没有绘制椭圆,云芝仍然有一条线穿过该形状。我们可以通过指定 aes(linetype = Species) 和 scale_linetype_manual 来绕过它。

library(dplyr, ggplot2)

ggplot(iris, aes(Sepal.Length, Sepal.Width, color = Species)) +
geom_point(aes(shape = Species)) +
stat_ellipse(aes(linetype = Species)) +
scale_linetype_manual(values = c(1,0,1)) +
theme(legend.position = "bottom")

[ No Legend here :) ]

关于使用 stat_ellipse ggplot2 时删除某些组的置信椭圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58234376/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com