powered by
Fonction de lecture de fichiers csv
get_data(path, erase_zero = TRUE, sep = ";", dec = ".", ...)
Un objet de type data.frame.
data.frame
Chaîne de caractère. Chemin du fichier csv.
Booléen. Remplace les valeurs nulle par NA_real_ (par défaut : TRUE).
NA_real_
TRUE
Chaine de caractère. Séparateur de colonne (par défaut : ;).
;
Chaine de caractère. Séparateur décimal (par défaut : .).
.
Autres paramètres de la fonction read.csv.
read.csv
par defaul
file_path <- system.file("extdata", "file.csv", package = "TBox") file_path <- normalizePath(file_path, winslash = "/", mustWork = FALSE) df <- get_data(file_path, erase_zero = FALSE)
Run the code above in your browser using DataLab