Deploying to gh-pages from @ agdamsbo/FreesearchR@8961bc6a5d 🚀

This commit is contained in:
agdamsbo 2026-03-24 12:02:27 +00:00
commit c2c2302f90
59 changed files with 1557 additions and 210 deletions

View file

@ -5,7 +5,7 @@ Easily plot single euler diagrams
## Usage
``` r
plot_euler_single(data)
plot_euler_single(data, color.palette = "viridis")
```
## Value
@ -21,6 +21,10 @@ data.frame(
C = sample(c(TRUE, FALSE, FALSE, FALSE), 50, TRUE),
D = sample(c(TRUE, FALSE, FALSE, FALSE), 50, TRUE)
) |> plot_euler_single()
#> Scale for fill is already present.
#> Adding another scale for fill, which will replace the existing scale.
mtcars[c("vs", "am")] |> plot_euler_single()
mtcars[c("vs", "am")] |> plot_euler_single("magma")
#> Scale for fill is already present.
#> Adding another scale for fill, which will replace the existing scale.
```