gpt4 book ai didi

r - 如何将刻度标签设置为连续 ggplot2 图例的边缘

转载 作者:行者123 更新时间:2023-12-04 10:41:46 28 4
gpt4 key购买 nike

假设我有以下情节:

library(ggplot2)
d = subset(diamonds, price >= 257 & price <= 8888)

ggplot(d, aes(depth, carat, colour = price)) +
geom_point() +
scale_colour_gradient(limits = c(257, 8888))

plot

如何更改图例以便刻度线标签显示最小值和最大值(257 和 8888)?我想让读者知道图例的限制是什么,而不是去猜测。

最佳答案

您可以指定 breakslabels :

ggplot(d, aes(depth, carat, colour = price)) +
geom_point() +
scale_colour_gradient(limits = c(257, 8888),
breaks = c(257, 2000, 4000, 6000, 8000, 8888),
labels = c(257, 2000, 4000, 6000, 8000, 8888))

enter image description here

关于r - 如何将刻度标签设置为连续 ggplot2 图例的边缘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34638810/

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