Package 'vellumverse'

Title: Easily Install and Load the 'Vellum' Graphics Ecosystem
Description: The 'vellum' ecosystem is a set of packages for drawing in R that share a scene model and a common design: 'vellum' (a low-level graphics backend with a Rust engine), 'vellumplot' (a pipe-first grammar of graphics on top of it), and 'vellumwidget' (client-side interactive HTML widgets for the scenes they produce). 'vellumverse' is a meta-package that installs and loads them together, in the spirit of the 'tidyverse'.
Authors: David Schoch [aut, cre]
Maintainer: David Schoch <[email protected]>
License: MIT + file LICENSE
Version: 0.2.0.9000
Built: 2026-07-12 18:40:25 UTC
Source: https://github.com/r-vellum/vellumverse

Help Index


Conflicts between the vellum ecosystem and other packages

Description

vellumverse_conflicts() lists every function exported by a core vellum-ecosystem package that is masked by, or masks, a function of the same name attached elsewhere on the search path. It is the equivalent of tidyverse::tidyverse_conflicts(), and is also reported automatically when vellumverse is attached.

Usage

vellumverse_conflicts()

Value

An S3 object of class "vellumverse_conflicts", a named list mapping each conflicted function to the packages that export it (in search-path order). Has a print method.

Examples

vellumverse_conflicts()

List the core vellum-ecosystem packages

Description

vellumverse_packages() returns the names of the packages that library(vellumverse) attaches.

Usage

vellumverse_packages(include_self = TRUE)

Arguments

include_self

Whether to include vellumverse itself in the list.

Value

A character vector of package names.

Examples

vellumverse_packages()