mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-09-12 01:49:39 +02:00
24 lines
578 B
Text
24 lines
578 B
Text
|
% 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()
|
||
|
}
|