| extract_check_log | R Documentation |
Extracts the check log from an olink_class tibble or an ArrowObject with
embedded metadata. Returns NULL if no check log is found.
extract_check_log(df)
df |
A data object, typically from |
A named list (the check log) or NULL if no check log is attached.
## Not run:
# read and check data
npx_file <- system.file(
"extdata",
"npx_data_ext.parquet",
package = "OlinkAnalyze"
)
npx_df <- OlinkAnalyze::read_npx(
filename = npx_file
)
check_log <- OlinkAnalyze::check_npx(
df = npx_df
)
# attach check_log to the data
npx_obj <- OlinkAnalyze::new_olink_class(
df = npx_df,
check_log = check_log
)
# retrieve check_log
OlinkAnalyze::extract_check_log(
df = npx_obj
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.