Description Usage Arguments Value Examples
This function will both widen the data frame so each element has its own column, and remove concentrations that are below the detection limits.
See vignette("xrfr") for more information.
1 | widen_above(project_data)
|
project_data |
The name of the data frame created with convertxrf(). |
description The function creates a data frame that is a wider version of the one created with convertxrf(), and where values below the detection limits are removed.
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
rawdata.df <- read_delim("xrf_rawdata.txt", delim = "\t", locale = locale(decimal_mark = ","))
projectinfo.df <- read_excel("xrf_projectinfo.xlsx")
baseinfo.df <- read_excel("xrf_setup.xlsx")
projectfile.df <- readxrf(raw_data = rawdata.df, project_info = projectinfo.df)
project.df <- convertxrf(imported_data = projectfile.df, base_info = baseinfo.df, year = "2019", first_element = "C", last_element = "As")
abovedetlim.df <- widen_above(project_data = project.df)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.