Retrieve the Language-Based Assessment Models library (LBAM).
textLBAM(columns = NULL, lbam_update = FALSE)
Arguments
- columns
(string) Select which columns to retrieve e.g., c("Name", "Path")
- lbam_update
(boolean) TRUE downloads a new copy of the LBAM file
Value
Data frame containing information about the Language-based assessment models library (LBAM).
Examples
if (FALSE) { # \dontrun{
library(dplyr)
test_lbam <- textLBAM(
lbam_update = TRUE
)
subset(
lbam,
substr(Construct_Concept_Behaviours, 1, 3) == "Dep",
select = c(Construct_Concept_Behaviours, Name)
)
} # }