View source: R/import_witrox.R
import_witrox | R Documentation |
Imports the standard txt file output from Loligo Systems Witrox fiber optic O2 transmitters and converts the data into one or more data frames.
import_witrox(
file,
o2_unit = "percent_a.s.",
date = "%m/%d/%Y %I:%M:%S %p",
overwrite_sal = NULL,
drop_channels = TRUE,
split_channels = FALSE
)
file |
a character string. The filepath for the file to be read. |
o2_unit |
a character string. The unit of O2 measurement to be output in the data frame. Options are described in |
date |
a character string. The date format to be passed to |
overwrite_sal |
Default |
drop_channels |
logical. Should channels without any O2 data be dropped? Default is |
split_channels |
logical. Should a list of data frames be returned with a separate data frame for each channel? Default is |
The following Loligo Systems fiber optic O2 transmitters are supported:
Witrox 4
If you would like support for the Witrox 1, email me a data file from this device.
A data frame (or list of data frames) is returned.
Date and time, POSIXlt format.
Duration of measurement trial (minutes).
Atmospheric pressure (mbar).
Phase recorded. Phase is inversely related to O2.
Temperature recorded or defined at beginning of measurement trial.
Salinity (psu).
Oxygen measurement in desired unit as determined by o2_unit
.
Channel columns (CH_...) are repeated for each channel.
If split_channels = TRUE
, then "CH_X_
" is removed from the column names and multiple data frames are returned in a list.
Matthew A. Birk, matthewabirk@gmail.com
import_pyroscience_workbench
, import_firesting
, import_presens
, conv_o2
## Not run:
file <- system.file('extdata', 'witrox_file.txt', package = 'respirometry')
import_witrox(file, o2_unit = 'umol_per_l')
# Oops. I forgot to change the salinity value when I calibrated
# the instrument. Override the values in the file for 35 psu.
import_witrox(file, o2_unit = 'umol_per_kg', overwrite_sal = 35)
# I want each channel as a separate data frame.
data_list <- import_witrox(file, split_channels = TRUE)
data_list$CH_3 # here's the channel 3 data frame.
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.