gpt4 book ai didi

将 stat_ellipse 限制为某些数据点

转载 作者:行者123 更新时间:2023-12-04 17:48:38 24 4
gpt4 key购买 nike

我有一个包含四类元音的数据集,类似于以下内容:

speaker   vowel_category  f1    f2
1 a x x
1 b x x
1 c x x
1 d x x
2 a x x
2 b x x...

此 geom_point 代码使用 stat_ellipse 将它们全部绘制成一张图,并且是我需要的 90%:

ggplot(data = topicsubset_ikf, aes(x = F2, y = F1, shape = CATEGORY)) +
geom_point() +
scale_y_reverse() +
scale_x_reverse() +
xlab("F2") +
ylab("F1") +
labs(title = "All speakers with KIT and FLEECE tokens") +
coord_cartesian(xlim = c(1.9, 1.1), ylim = c(0.3, 1.5)) +
facet_wrap(~ SPEAKER) +
scale_color_manual(values = c("#000000", "#FF8F00", "#000000", "#A200FF")) +
stat_ellipse(geom = "polygon", alpha = 1 / 2, aes(fill = CATEGORY))

但是,如果我可以只围绕四个类别中的两个(例如 a 和 b)而不是所有 4 个绘制椭圆,那将是理想的,这样我就可以查看 c 和 d 相对于 a 和 b 的分布.到目前为止,我还没有找到一种方法——我曾尝试将多个数据集组合在一个图表上,但无济于事。有什么建议吗?

最佳答案

我有同样的问题,我发现现在你可以像这样在 stat_ellipse 中指定组:

stat_ellipse(geom = "多边形", alpha = 1/2, aes(fill = CATEGORY, group = CATEGORY))

关于将 stat_ellipse 限制为某些数据点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46908396/

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