# Path to example files
har_path <- system.file("extdata", "TAR10-WEL.har", package = "HARplus")
# Basic loading
har_data <- load_harx(har_path)
# Load with coefficient names
har_data_coef <- load_harx(har_path, coefAsname = TRUE)
# Load with lowercase names
har_data_lower <- load_harx(har_path, lowercase = TRUE)
# Load specific headers
har_selected <- load_harx(har_path, select_header = c("A", "E1"))
# Load with multiple options
har_combined <- load_harx(har_path,
coefAsname = TRUE,
lowercase = TRUE,
select_header = c("A", "E1"))
Run the code above in your browser using DataLab