read_lims | R Documentation |
Read AGAT LIMS data files
read_lims(
path,
sheet_name = 1,
first_line = "AGAT Workorder",
meta_rows = 4,
work_order
)
path |
Path to stored ICP-MS files |
sheet_name |
Name of MS Excel sheet where data are stored |
first_line |
The first column matches this pattern at the first line of data.
As an input to |
meta_rows |
How many rows contain metadata that should appear in the column names? Default is 4. |
work_order |
The AGAT LIMS work order number. Used to select columns containing numeric data. |
A tibble with columns param
, unit
, rdl
(detection limit), value
,
date
, bdl
(below detection indicator), and sample
file <- list.files(
path = system.file("extdata", package = "cwrshelpr"),
full.names = TRUE,
pattern = ".+\\.xlsx"
)
read_lims(file[3], work_order = "00A123456")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.