library(rtemis)
.:rtemis 0.99.93 🌊 aarch64-apple-darwin20
library(rtemis)
.:rtemis 0.99.93 🌊 aarch64-apple-darwin20
rtemis’s read()
function allows reading tabular data of various formats:
data.table:fread()
, arrow:read_delim_arrow()
, vroom::vroom()
, duckdb::duckdb_read_csv()
farff::readARFF()
arrow::read_parquet()
readxl::read_excel()
haven::read_dta()
seqinr::read.fasta()
readRDS()
Delimited files, particularly when large and containing complex data, can be slow and/or difficult to parse. read()
’s delim_reader
argument allows to specify which package to use for reading delimited files. Available options:
fread()
read_delim_arrow()
vroom()
duckdb_read_csv()
We also await the CRAN release of polars
, the R port of the performant data frame structure written in Rust.
<- read("~/Data/iris.csv") sonar