Check the integrity of RData
/ qs2
/ rds
/ feather
files
Source: R/General_CheckData.R
Check_data.Rd
These functions validate a given file by checking its extension and
attempting to load its contents. A file is considered valid if it loads
successfully and contains a non-null object, returning TRUE
. Otherwise, it
returns FALSE
.
Usage
CheckData(File, warning = TRUE, nthreads = 5)
CheckRData(File, warning = TRUE)
CheckQs(File, warning = TRUE, nthreads = 5)
CheckRDS(File, warning = TRUE)
CheckFeather(File, warning = TRUE)
Details
The CheckData()
function determines the file type based on its
extension. If the extension is unrecognized, it returns FALSE
. Supported
file types:
RData: Checked with
CheckRData()
, read using LoadAsqs2: Checked with
CheckQs()
, read using qs2::qs_readrds: Checked with
CheckRDS()
, read using readRDSfeather: Checked with
CheckFeather()
, read using arrow::read_feather