Export measurement data produced by a Daybreak luminescence reader to CSV-files
Source:R/convert_Daybreak2CSV.R
convert_Daybreak2CSV.Rd
This function is a wrapper function around the functions read_Daybreak2R and
write_RLum2CSV and it imports a Daybreak-file (TXT-file, DAT-file)
and directly exports its content to CSV-files. If nothing is set for the
argument path
(write_RLum2CSV) the input folder will become the output folder.
Arguments
- file
character (required): name of the Daybreak-file (TXT-file, DAT-file) to be converted to CSV-files
- ...
further arguments that will be passed to the function read_Daybreak2R and write_RLum2CSV
Value
The function returns either a CSV-file (or many of them) or for the option export = FALSE
a list comprising objects of type data.frame and matrix
Author
Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany) , RLum Developer Team
How to cite
Kreutzer, S., 2024. convert_Daybreak2CSV(): Export measurement data produced by a Daybreak luminescence reader to CSV-files. Function version 0.1.0. In: Kreutzer, S., Burow, C., Dietze, M., Fuchs, M.C., Schmidt, C., Fischer, M., Friedrich, J., Mercier, N., Philippe, A., Riedesel, S., Autzen, M., Mittelstrass, D., Gray, H.J., Galharret, J., Colombo, M., 2024. Luminescence: Comprehensive Luminescence Dating Data Analysis. R package version 0.9.26. https://r-lum.github.io/Luminescence/
Examples
if (FALSE) { # \dontrun{
##select your BIN-file
file <- file.choose()
##convert
convert_Daybreak2CSV(file)
} # }