read_icp | R Documentation |
Read ICP-MS data files generated by the Thermo Scientific iCAP-RQ
read_icp(
path,
sheet_name = "Dilution factor included",
first_line = "Sample List",
sample_names = "Label",
estimate_types = "Category",
...
)
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 |
sample_names |
Name of column where sample names are stored. |
estimate_types |
Name of column where estimate types are stored (e.g., average, standard deviation). |
... |
Arguments passed on to |
A tibble with columns sample_name
, category
, isotope
, element
,
value
, and unit
file <- list.files(
path = system.file("extdata", package = "cwrshelpr"),
full.names = TRUE,
pattern = ".+\\.xlsx"
)
read_icp(file[1])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.