-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparse_waves.Rd
More file actions
34 lines (30 loc) · 807 Bytes
/
Copy pathparse_waves.Rd
File metadata and controls
34 lines (30 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/parse_waves.R
\name{parse_waves}
\alias{parse_waves}
\title{parse_waves}
\usage{
parse_waves(
dataset,
samps_col = "samps",
waves_col = "waves",
abs_col = "abs",
wave_pairs = list(c(300, 400), c(542, 644))
)
}
\arguments{
\item{dataset}{the dataset being used. must be run through read_nanodrop()}
\item{samps_col}{Column name for samples (default "samps")}
\item{waves_col}{Column name for wavelengths (default "waves")}
\item{abs_col}{Column name for absorbance (default "abs")}
\item{wave_pairs}{List of wavelength pairs to analyze (default: c(300,400) and c(542,644))}
}
\value{
final_combined
}
\description{
Parse wavelength differences for spectral analysis
}
\examples{
test <- parse_waves(dataset = ds1)
}