如何控制ggpattern的填充图案的宽度

发布于 2025-01-11 00:31:09 字数 476 浏览 0 评论 0原文

我想减小 ggpattern 的填充图案的宽度,使其看起来像黑色斜线。但是,我的脚本不起作用。

输入图片此处描述

library(ggplot2)
library(ggpattern)

ggplot(sf_poly) + 
    geom_sf_pattern(pattern_fill = "transparent", fill = "transparent", 
        # pattern = 0,
        pattern_size = 0.2,
        pattern_type = 3,
        color = "transparent",
        size = 0.2) 

I want to decrease the width of ggpattern's fill pattern, making it looks like a black oblique line. However, my script did not work.

enter image description here

library(ggplot2)
library(ggpattern)

ggplot(sf_poly) + 
    geom_sf_pattern(pattern_fill = "transparent", fill = "transparent", 
        # pattern = 0,
        pattern_size = 0.2,
        pattern_type = 3,
        color = "transparent",
        size = 0.2) 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

简单 2025-01-18 00:31:09

根据 packages "stripe" vignette 您可以使用pattern_密度美学控制图案填充的区域,即在这种情况下,较低的pattern_密度值将减小条纹的宽度。或者,减少pattern_spacing将增加条纹数量,这也会减少固定pattern_密度值的条纹宽度(填充给定区域的条纹越多意味着每个条纹必须更小)。

According to the packages "stripe" vignette you can use the pattern_density aesthetic to control the area the pattern fills i.e. in this case a lower pattern_density value will decrease the width of the stripes. Alternatively decreasing pattern_spacing will increase the number of stripes which would also reduce the stripe width for a fixed pattern_density value (more stripes filling a given area means each stripe must be smaller).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文