我是新手,我正试图设计热图。这是我的代码:
ggplot(gd, aes(Qcountry, Q6_1_Q6d), order = TRUE) +
geom_tile(aes(fill = prob), colour = "white") +
theme_minimal() +
labs( y = "Main reason for mobility", x = "Country") +
theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.3)) +
scale_fill_gradient(name = "(%)")
哪个产生完美的图表,我的问题是低水平是深蓝色,而更高的值是浅蓝色,这是不直观的。最常见的方法是使用rev()
。但在我的情况下,我不知道如何。那么,是否可以反转默认比例?
This is the legend
其他问题,是否有办法仅使用一种颜色创建缩放渐变。我的意思是,scale_fill_gradient/scale_fill_gradientn
需要设置一个低颜色和高颜色(low = "", high = "")
,我想用红色改变蓝色。
非常感谢您的支持。
答案 0 :(得分:4)
?scale_colour_gradient
显示默认值low = "#132B43"
和high = "#56B1F7"
。
只需切换它们:
ggplot(faithfuld, aes(waiting, eruptions)) +
geom_raster(aes(fill = density)) +
scale_fill_continuous(high = "#132B43", low = "#56B1F7")
就我个人而言,我认为这不如默认值那么直观。
答案 1 :(得分:3)
您可以使用RColorBrewer
(link)库中的调色板并指定颜色渐变的方向
library(RColorBrewer)
library(ggplot2)
ggplot(df, aes(x, y)) +
geom_tile(aes(fill = z, width = w), colour = "grey50") +
scale_fill_distiller(palette ="RdBu", direction = -1) # or direction=1
# data
df <- data.frame( x = rep(c(2, 5, 7, 9, 12), 2),
y = rep(c(1, 2), each = 5),
z = rep(1:5, each = 2),
w = rep(diff(c(0, 4, 6, 8, 10, 14)), 2))