Last updated on 2026-04-30 16:54:42 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.3.1 | 8.74 | 170.48 | 179.22 | OK | |
| r-devel-linux-x86_64-debian-gcc | 1.3.1 | 5.93 | 109.64 | 115.57 | OK | |
| r-devel-linux-x86_64-fedora-clang | 1.3.1 | 14.00 | 244.02 | 258.02 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 1.3.1 | 14.00 | 245.39 | 259.39 | OK | |
| r-devel-windows-x86_64 | 1.3.1 | 14.00 | 157.00 | 171.00 | ERROR | |
| r-patched-linux-x86_64 | 1.3.1 | 9.72 | 153.53 | 163.25 | OK | |
| r-release-linux-x86_64 | 1.3.1 | 7.78 | 154.40 | 162.18 | OK | |
| r-release-macos-arm64 | 1.3.1 | 2.00 | 42.00 | 44.00 | OK | |
| r-release-macos-x86_64 | 1.3.1 | 7.00 | 164.00 | 171.00 | OK | |
| r-release-windows-x86_64 | 1.3.1 | 13.00 | 162.00 | 175.00 | OK | |
| r-oldrel-macos-arm64 | 1.3.1 | 2.00 | 46.00 | 48.00 | OK | |
| r-oldrel-macos-x86_64 | 1.3.1 | 7.00 | 173.00 | 180.00 | OK | |
| r-oldrel-windows-x86_64 | 1.3.1 | 17.00 | 217.00 | 234.00 | OK |
Version: 1.3.1
Check: examples
Result: ERROR
Running examples in 'ggpattern-Ex.R' failed
The error most likely occurred in:
> ### Name: scale_pattern_shape
> ### Title: Scales for shapes, aka glyphs
> ### Aliases: scale_pattern_shape scale_pattern_shape_discrete
> ### scale_pattern_shape_ordinal scale_pattern_shape_continuous
>
> ### ** Examples
>
> if (require("ggplot2")) {
+ # 'pch' pattern example
+ gg <- ggplot(mtcars, aes(as.factor(cyl), mpg)) +
+ geom_violin_pattern(aes(fill = as.factor(cyl),
+ pattern_shape = as.factor(cyl)),
+ pattern = 'pch',
+ pattern_density = 0.3,
+ pattern_angle = 0,
+ colour = 'black'
+ ) +
+ theme_bw(18) +
+ theme(legend.position = 'none') +
+ scale_pattern_shape() +
+ labs(
+ title = "ggpattern::geom_violin_pattern()",
+ subtitle = "pattern = 'pch'"
+ )
+ plot(gg)
+ }
Loading required package: ggplot2
Flavor: r-devel-windows-x86_64