gpt4 book ai didi

r - 更改 grob 背景渐变的方向

转载 作者:行者123 更新时间:2023-12-04 23:13:53 26 4
gpt4 key购买 nike

我很惊讶以下从颜色向量创建的简单 grob 几乎按要求工作。

enter image description here

但是,我想让渐变从左到右,而不是从上到下。

library(ggplot2) 
library(grid)
grad = colorRampPalette(c("red", "yellow"))(10)

ggplot(df, aes(x,y)) +
annotation_custom(rasterGrob(grad,
width=unit(1,"npc"),
height=unit(1,"npc"))) +
scale_x_continuous(limits = c(0,1)) +
scale_y_continuous(limits = c(0,1))

最佳答案

答案是 t
你必须转置你的grad向量(输入到 rasterGrob ):

library(ggplot2)
ggplot() +
annotation_custom(rasterGrob(t(grad),
width = unit(1, "npc"), height = unit(1, "npc")))

enter image description here

关于r - 更改 grob 背景渐变的方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48596582/

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