read_d1_files {metajam} | R Documentation |
Read data and metadata based on 'download_d1_data()' file structure
Description
Reads data along with metadata into your R environment based on [download_d1_data()] file structure.
Usage
read_d1_files(folder_path, fnc = "read_csv", ...)
Arguments
folder_path |
(character) Path to a directory where data and metadata are located. |
fnc |
(character) Function to be used to read the data (default is [readr::read_csv()]). |
... |
Parameters to pass into the function specified in 'fnc'. |
Value
(list) Named list containing data and metadata as data frames.
See Also
[download_d1_data()] [download_d1_data_pkg()]
Examples
data_folder <- system.file(file.path("extdata", "test_data"), package = "metajam")
soil_moist_data <- read_d1_files(data_folder)
# You can specify the function you would like to use to read the file and pass parameters
soil_moist_data_skipped <- read_d1_files(data_folder, "read.csv",
skip = 8, stringsAsFactors = FALSE)
[Package metajam version 0.3.0 Index]