mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-09-12 18:09:39 +02:00
Some checks are pending
pkgdown.yaml / pkgdown (push) Waiting to run
23 lines
578 B
R
23 lines
578 B
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/plot_euler.R
|
|
\name{plot_euler_single}
|
|
\alias{plot_euler_single}
|
|
\title{Easily plot single euler diagrams}
|
|
\usage{
|
|
plot_euler_single(data)
|
|
}
|
|
\value{
|
|
ggplot2 object
|
|
}
|
|
\description{
|
|
Easily plot single euler diagrams
|
|
}
|
|
\examples{
|
|
data.frame(
|
|
A = sample(c(TRUE, TRUE, FALSE), 50, TRUE),
|
|
B = sample(c("A", "C"), 50, TRUE),
|
|
C = sample(c(TRUE, FALSE, FALSE, FALSE), 50, TRUE),
|
|
D = sample(c(TRUE, FALSE, FALSE, FALSE), 50, TRUE)
|
|
) |> plot_euler_single()
|
|
mtcars[c("vs", "am")] |> plot_euler_single()
|
|
}
|