Description Usage Arguments Value Examples
This function reads your two data frames and combines them into one. It will warn you if there are any samples that do not match between your datasets (the raw data and the information file).
See vignette("xrfr") for more information.
1 | readxrf(raw_data, project_info)
|
raw_data |
The name of your data frame with raw data from the XRF machine. |
project_info |
The name of your data frame with necessary information about the samples. |
description The function creates a data frame where your raw data and project information has been merged.
1 2 3 4 5 6 7 | ## Not run:
rawdata.df <- read_delim("xrf_rawdata.txt", delim = "\t", locale = locale(decimal_mark = ","))
projectinfo.df <- read_excel("xrf_projectinfo.xlsx")
projectfile.df <- readxrf(raw_data = rawdata.df, project_info = projectinfo.df)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.