Skip to contents

This variable stores the current date (in "yyyymmdd" format) at the time the package is loaded. It is useful for reproducible filenames (e.g., in saveViz()), and is automatically set when the package is attached.

Usage

today

Format

A character string (e.g., "20250624").

Examples

# Print the date stored at package load
library(gVenn)
today
#> [1] "20250926"

# Use it in a filename
paste0("venn_plot_", today, ".pdf")
#> [1] "venn_plot_20250926.pdf"