R/config.R

PvSTATEM.env <- new.env(parent = emptyenv())

# MBA formats
PvSTATEM.env$mba_formats <- c("xPONENT", "INTELLIFLEX")

# String patterns for declared MBA formats
PvSTATEM.env$xponent_pattern <- "xpontent|xponent"
PvSTATEM.env$intelliflex_pattern <- "intelliflex"
PvSTATEM.env$mba_pattern <- paste(
  PvSTATEM.env$xponent_pattern,
  PvSTATEM.env$intelliflex_pattern,
  sep = "|"
)

# Normalisation types
PvSTATEM.env$normalisation_types <- c("RAU", "nMFI")

# String patterns for declared normalisation types
PvSTATEM.env$normalisation_pattern <- paste0(
  PvSTATEM.env$normalisation_types,
  collapse = "|"
)

Try the PvSTATEM package in your browser

Any scripts or data that you put into this service are public.

PvSTATEM documentation built on April 4, 2025, 4:34 a.m.