gpt4 book ai didi

r - Alpha 美学显示箭头的骨架而不是普通形状 - 如何防止它?

转载 作者:行者123 更新时间:2023-12-03 14:35:13 26 4
gpt4 key购买 nike

我的目标是在条形图的末尾构建一个带有箭头的条形图。我去了 geom_segmentarrow定义。我想将一列映射到透明度上,但 alpha 美学似乎不适用于箭头对象。这是代码片段:

tibble(y = c(10, 20, 30), n = c(300, 100, 200), transparency = c(10, 2, 4)) %>% 
ggplot() + geom_segment(aes(x = 0, xend = n, y = y, yend = y, alpha = transparency),
colour = 'red', size = 10, arrow = arrow(length = unit(1.5, 'cm'), type = 'closed')) +
scale_y_continuous(limits = c(5, 35))
enter image description here
可以很容易地观察到 arrow如果 alpha 的值较低,对象看起来不太好,显示它的骨架而不是简单、透明的形状。有什么办法可以预防吗?

最佳答案

我们可以创建一个新的 geom,geom_arrowbar ,我们可以像其他任何几何图形一样使用它,因此在您的情况下,它只需执行以下操作即可提供所需的图:

tibble(y = c(10, 20, 30), n = c(300, 100, 200), transparency = c(10, 2, 4)) %>%
ggplot() +
geom_arrowbar(aes(x = n, y = y, alpha = transparency), fill = "red") +
scale_y_continuous(limits = c(5, 35)) +
scale_x_continuous(limits = c(0, 350))

enter image description here

它包含 3 个参数, column_width , head_widthhead_length如果您不喜欢默认值,则允许您更改箭头的形状。我们还可以根据需要指定填充颜色和其他美感:

tibble(y = c(10, 20, 30), n = c(300, 100, 200), transparency = c(10, 2, 4)) %>%
ggplot() +
geom_arrowbar(aes(x = n, y = y, alpha = transparency, fill = as.factor(n)),
column_width = 1.8, head_width = 1.8, colour = "black") +
scale_y_continuous(limits = c(5, 35)) +
scale_x_continuous(limits = c(0, 350))

enter image description here

唯一的障碍是我们必须先编写它!

遵循 extending ggplot2 vignette 中的示例,我们可以定义我们的 geom_arrowbar与定义其他几何体的方式相同,除了我们希望能够传递控制箭头形状的 3 个参数。这些被添加到 params结果列表 layer对象,它将用于创建我们的箭头层:

library(tidyverse)

geom_arrowbar <- function(mapping = NULL, data = NULL, stat = "identity",
position = "identity", na.rm = FALSE, show.legend = NA,
inherit.aes = TRUE, head_width = 1, column_width = 1,
head_length = 1, ...)
{
layer(geom = GeomArrowBar, mapping = mapping, data = data, stat = stat,
position = position, show.legend = show.legend, inherit.aes = inherit.aes,
params = list(na.rm = na.rm, head_width = head_width,
column_width = column_width, head_length = head_length, ...))
}

现在“所有”剩下的就是定义什么是 GeomArrowBar是。这实际上是一个 ggproto类定义。其中最重要的部分是 draw_panel成员函数,它获取数据帧的每一行并将其转换为箭头形状。经过一些基本的数学运算,根据 x 和 y 坐标以及我们的各种形状参数计算出箭头的形状应该是什么,它会产生一个 grid::polygonGrob对于我们数据的每一行并将其存储在 gTree 中.这形成了图层的图形组件。
GeomArrowBar <- ggproto("GeomArrowBar", Geom,
required_aes = c("x", "y"),
default_aes = aes(colour = NA, fill = "grey20", size = 0.5, linetype = 1, alpha = 1),
extra_params = c("na.rm", "head_width", "column_width", "head_length"),
draw_key = draw_key_polygon,
draw_panel = function(data, panel_params, coord, head_width = 1,
column_width = 1, head_length = 1) {
hwidth <- head_width / 5
wid <- column_width / 10
len <- head_length / 10
data2 <- data
data2$x[1] <- data2$y[1] <- 0
zero <- coord$transform(data2, panel_params)$x[1]
coords <- coord$transform(data, panel_params)
make_arrow_y <- function(y, wid, hwidth) {
c(y - wid/2, y - wid/2, y - hwidth/2, y, y + hwidth/2, y + wid/2, y + wid/2)
}
make_arrow_x <- function(x, len){
if(x < zero) len <- -len
return(c(zero, x - len, x - len , x, x - len, x - len, zero))
}
my_tree <- grid::gTree()
for(i in seq(nrow(coords))){
my_tree <- grid::addGrob(my_tree, grid::polygonGrob(
make_arrow_x(coords$x[i], len),
make_arrow_y(coords$y[i], wid, hwidth),
default.units = "native",
gp = grid::gpar(
col = coords$colour[i],
fill = scales::alpha(coords$fill[i], coords$alpha[i]),
lwd = coords$size[i] * .pt,
lty = coords$linetype[i]))) }
my_tree}
)

这种实现远非完美。它缺少一些重要的功能,例如合理的默认轴限制和 coord_flip 的能力。 ,如果箭头比整个列长,它会产生不美观的结果(尽管在那种情况下你可能不想使用这样的图)。但是,如果您有负值,它会明智地将箭头指向左侧。更好的实现可能还会为空箭头添加一个选项。

简而言之,它需要进行大量调整才能消除这些(和其他)错误并使其可用于生产,但同时无需太多努力即可生成一些漂亮的图表。

创建于 2020-03-08 由 reprex package (v0.3.0)

关于r - Alpha 美学显示箭头的骨架而不是普通形状 - 如何防止它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60446727/

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