Read lf data
Usage
read_lf(
onedrive = Sys.getenv("ONEDRIVE_GSED"),
path = NULL,
adm = c("fixed", "adaptive"),
verbose = FALSE,
progress = FALSE,
warnings = FALSE
)Arguments
- onedrive
Character, the location of the local OneDrive sync
- path
Character, path name within the OneDrive
- adm
Character, either "fixed" or "adaptive" administration type
- verbose
Logical. Print diagnostic info? Defaults to
FALSE.- progress
Logical. Show progress in interactive session. Default to
FALSE.- warnings
Logical. Show warnings generated by
readr::read_csv(). Defaults toFALSE.
Value
A tibble with the original data and two column names: file
(containing the original file name) and adm (fixed or adaptive).
If adm == "fixed" a tibble with 159
columns, with one test administration per row. If adm == "adaptive", a tibble
with 14 columns, with one item administration per row.
Examples
if (FALSE) { # \dontrun{
# assuming environmental variable ONEDRIVE_GSED has been set
d <- read_lf()
dim(d)
} # }