gpt4 book ai didi

r - ggplot2图例只有一种类别/只有形状而没有比例

转载 作者:行者123 更新时间:2023-12-02 10:03:12 24 4
gpt4 key购买 nike

如何才能拥有只有一个类别的图例部分?我试图搞乱 override.aes 但没有成功。或者,所需的输出可以被视为只有形状但没有比例的图例。

ggplot(iris) +
geom_point(aes(x=Sepal.Width, y=Sepal.Length, color=Species, size=Sepal.Length))+
scale_size_continuous("Legend with \n only 1 circle ",range = c(5,10))+
guides(size = guide_legend( override.aes=list(range= c(1,5))))

image1

product 类型的图示我正在尝试访问:map2

点已缩放,但图例不报告比例。

最佳答案

只需在音阶中创建一个中断即可。您也可以向其添加自定义标签(此处为 "")。您还可以使用您选择的中断来控制图例中点的大小。

scale_color_discrete() 行之所以存在,是因为否则 1 点图例将位于顶部,而不是您想要的图片中的内容。

require(ggplot2)
g <- ggplot(iris) + geom_point(aes(x = Sepal.Width, y = Sepal.Length,
color = Species, size = Sepal.Length)) +
scale_color_discrete(name = "Color") +
scale_size_continuous(name = "Legend with \n only 1 circle",
breaks = 5, labels = "")

enter image description here

关于r - ggplot2图例只有一种类别/只有形状而没有比例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34396352/

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