import_Data | R Documentation |
Convenience wrapper function to provide a quicker and more standardised way of
reading data into R by looping through all in the package available data import
functions starting with read_
. Import data types can be mixed.
import_Data(file, ..., fastForward = TRUE, verbose = FALSE)
file |
character (required): file to be imported, can be a list or a character vector |
... |
arguments to be further passed down to supported functions (please check the functions to determine the correct arguments) |
fastForward |
logical (with default): option to create RLum objects during import or a list of such objects |
verbose |
logical (with default): enable/disable output to the terminal. |
Always returns a list; empty or filled with RLum.Analysis objects
0.1.5
Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
read_HeliosOSL2R, read_BIN2R, read_Daybreak2R, read_RF2R, read_SPE2R, read_PSL2R, read_XSYG2R, read_TIFF2R
## import BINX/BIN
file <- system.file("extdata/BINfile_V8.binx", package = "Luminescence")
temp <- import_Data(file)
## RF data
file <- system.file("extdata", "RF_file.rf", package = "Luminescence")
temp <- import_Data(file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.