Learn R Programming

structenforcement

Tools for ensuring that data is correctly typed.

Without moving over to a strict type system such at that offered by the typed package or enforcing classes everywhere, this offers a straightforward approach to getting lists (and especially dataframes) into the correct types, where R's extreme dynamism might infer something incorrectly when it comes to input data.

It is naturally best used in conjunction with other means of ensuring that structures keep the correct types once they've been cast. As of the initial implementation, this mostly cares about primitive types. The only class that is handled neatly is POSIXct.

Installation

You can install the development version of structenforcement like so:

remotes::install_gitlab("S_S_/structenforcement")

Example

library(structenforcement)

template_struct <- data.frame(
    "Sepal.Length"  = integer(0),
    "Sepal.Width"   = numeric(0),
    "Petal.Length"  = numeric(0),
    "Petal.Width"   = numeric(0)
)
type_checked_iris <- type_check(
    template_struct,
    iris,
    TRUE,
    c("casts", "missing", "excess")
)

Copy Link

Version

Install

install.packages('structenforcement')

Monthly Downloads

99

Version

0.1.3

License

MIT + file LICENSE

Maintainer

Samuel Sapire

Last Published

June 2nd, 2025

Functions in structenforcement (0.1.3)

type_check

List Type Checking
bind_as_struct

Bind as Struct