mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 12:37:30 +02:00
Deploying to gh-pages from @ agdamsbo/FreesearchR@8961bc6a5d 🚀
This commit is contained in:
parent
66780fc453
commit
c2c2302f90
59 changed files with 1557 additions and 210 deletions
|
|
@ -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.
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue