Skip to contents

Title: Base Functions for the DescToolsX Ecosystem
License: GPL (โ‰ฅ 2)

๐Ÿงฉ Overview

bedrock is the foundation layer of the DescToolsX ecosystem. It provides low-level, generic utilities and basic routines โ€” data manipulation, inspection, vector operations, string handling, math and combinatorics โ€” that serve as building blocks for the higher-level statistical, graphics, and modelling packages of the suite.

The package is self-contained. It has no dependency on any other package of the suite and is equally useful on its own.

It follows the DescToolsX design rules: a consistent lowerCamelCase API, generic functions with S3 methods, predictable argument names and ordering, and performance-critical routines implemented in Rcpp.

๐Ÿ“– Documentation: https://andrisignorell.github.io/bedrock/

โš™๏ธ Installation

Install the released version from CRAN:

install.packages("bedrock")

Or the development version from GitHub:

remotes::install_github("AndriSignorell/bedrock")

๐Ÿ“š Core Features

๐Ÿ”น Data Manipulation

Appending, recoding, renaming, sorting, and reshaping of vectors, factors, matrices, and data frames.

๐Ÿ”น Data Inspection & Validation

Predicates and checks for data quality and structure.

๐Ÿ”น Tables & Merging

๐Ÿ”น Labels & Metadata

๐Ÿ”น File Utilities

๐Ÿ”น Datasets

Teaching and example datasets: Cards, Pizza, Roulette, Tarot, plus courseData() for loading course material.

๐Ÿš€ Design Principles

  • Consistent โ€” lowerCamelCase API and uniform argument conventions across the whole DescToolsX suite
  • Fast โ€” performance-critical routines implemented in Rcpp
  • Generic โ€” S3 generics with methods for vectors, factors, matrices, tables, and data frames
  • Robust โ€” validated inputs, informative errors, extensive testthat coverage

๐Ÿงช Example

library(bedrock)

# range operators
x <- 1:10
x %[]% c(3, 6)

# first non-missing value
coalesceX(c(NA, NA, 5, 3))

# round to arbitrary multiples
roundTo(c(1.23, 4.56), 0.25)

# all 2-element subsets
combSet(letters[1:4], 2)

# parse a SAS data step
sas <- "
  data mydata;
    input name $ age score;
  datalines;
  Alice 30 95.5
  Bob   25 88.0
  ;
"
parseSASDatalines(sas)

๐Ÿ™ Acknowledgements

Parts of the code and documentation were reviewed with the help of large language models (OpenAI Codex, Anthropic Claude). Every suggestion was assessed, edited and verified by the maintainer, who remains solely responsible for the content of this package.

๐Ÿ“œ License

GPL (โ‰ฅ 2)