Learn R Programming

High-performance I/O tools for R

Anyone dealing with large data knows that stock tools in R are bad at loading (non-binary) data to R. This package started as an attempt to provide high-performance parsing tools that minimize copying and avoid the use of strings when possible (see mstrsplit, for example). A paper describing the some functionality of the package can be found here

To allow processing of arbitrarily large files we have added way to process chunk-wise input, making it possible to compute on streaming input as well as very large files (see chunk.reader and chunk.apply).

The next natural progress was to wrap support for Hadoop streaming. The major goal was to make it possible to compute using Hadoop Map Reduce by writing code that is very natural - very much like using lapply on data chunks without the need to know anything about Hadoop. See the WiKi page for the idea and hmr function for the documentation.

Copy Link

Version

Install

install.packages('iotools')

Monthly Downloads

3,451

Version

0.4-0.1

License

GPL-2 | GPL-3

Maintainer

Simon Urbanek

Last Published

August 29th, 2026

Functions in iotools (0.4-0.1)

imstrsplit

Create an iterator for splitting binary or character input into a matrix
write.csv.raw

Fast data output to disk
input.file

Load a file on the disk
chunk.apply

Process input by applying a function to each chunk
.default.formatter

Default formatter, coorisponding to the as.output functions
fdrbind

Fast row-binding of lists and data frames
idstrsplit

Create an iterator for splitting binary or character input into a dataframe
readAsRaw

Read binary data in as raw
as.output

Character Output
which.min.key

Determine the next key in bytewise order
dstrsplit

Split binary or character input into a dataframe
chunk.map

Map a function over a file by chunks
ctapply

Fast tapply() replacement function for contiguous groups
output.file

Write an R object to a file as a character string
dstrfw

Split fixed width input into a dataframe
chunk

Functions for very fast chunk-wise processing
read.csv.raw

Fast data frame input
line.merge

Merge multiple sources
mstrsplit

Split binary or character input into a matrix