importer: Import massively all the data from a xlsx dataset or a...

View source: R/io.R

importerR Documentation

Import massively all the data from a xlsx dataset or a directory of text file

Description

This is a dispatcher for read.tables, read.table_dir or read.xlsx_alls

Usage

importer(
  p,
  xlsx_params = list(),
  text_params = list(header = TRUE, stringsAsFactors = FALSE, sep = ";", dec = ".", quote
    = "\"", fill = TRUE)
)

Arguments

p

char with a path to multiple text data files, a directory with text data file, a single .xlsx file or a zip (of csv, tsv, tab or xlsx, contained in the root directory)

xlsx_params

parameters passed to read.xlsx_alls (they will be commonly applied to all xlsx)

text_params

arguments passed to read.table (they will be commonly applied to all text files)


lbraglia/lbmisc documentation built on March 28, 2024, 10:03 a.m.