readr 1.0.0 is now available on CRAN. readr makes it easy to read many types of rectangular data, including csv, tsv and fixed width files. Compared to base equivalents like read.csv()
, readr is much faster and gives more convenient output: it never converts strings to factors, can parse date/times, and it doesn’t munge the column names. Install the latest version with:
Releasing a version 1.0.0 was a deliberate choice to reflect the maturity and stability and readr, thanks largely to work by Jim Hester. readr is by no means perfect, but I don’t expect any major changes to the API in the future.
In this version we:
Use a better strategy for guessing column types.
Improved the default date and time parsers.
Provided a full set of lower-level file and line readers and writers.
Fixed many bugs.
The process by which readr guesses the types of columns has received a substantial overhaul to make it easier to fix problems when the initial guesses aren’t correct, and to make it easier to generate reproducible code. Now column specifications are printing by default when you read from a file:
mtcars2 <- read_csv(readr_example("mtcars.csv"))
#> Parsed with column specification:
#> cols(
#> mpg = col_double(),
#> cyl = col_double(),
#> disp = col_double(),
#> hp = col_double(),
#> drat = col_double(),
#> wt = col_double(),
#> qsec = col_double(),
#> vs = col_double(),
#> am = col_double(),
#> gear = col_double(),
#> carb = col_double()
#> )
The thought is that once you’ve figured out the correct column types for a file, you should make the parsing strict. You can do this either by copying and pasting the printed column specification or by saving the spec to disk:
# Once you've figured out the correct types
mtcars_spec <- write_rds(spec(mtcars2), "mtcars2-spec.rds")
# Every subsequent load
mtcars2 <- read_csv(
readr_example("mtcars.csv"),
col_types = read_rds("mtcars2-spec.rds")
)
# In production, you might want to throw an error if there
# are any parsing problems.
stop_for_problems(mtcars2)
You can now also adjust the number of rows that readr uses to guess the column types with guess_max
:
challenge <- read_csv(readr_example("challenge.csv"))
#> Parsed with column specification:
#> cols(
#> x = col_double(),
#> y = col_logical()
#> )
#> Warning: 1000 parsing failures.
#> row col expected actual file
#> 1001 y 1/0/T/F/TRUE/FALSE 2015-01-16 '/tmp/RtmpnpL2Ud/temp_libpath4a6169398a51/readr/extdata/challenge.csv'
#> 1002 y 1/0/T/F/TRUE/FALSE 2018-05-18 '/tmp/RtmpnpL2Ud/temp_libpath4a6169398a51/readr/extdata/challenge.csv'
#> 1003 y 1/0/T/F/TRUE/FALSE 2015-09-05 '/tmp/RtmpnpL2Ud/temp_libpath4a6169398a51/readr/extdata/challenge.csv'
#> 1004 y 1/0/T/F/TRUE/FALSE 2012-11-28 '/tmp/RtmpnpL2Ud/temp_libpath4a6169398a51/readr/extdata/challenge.csv'
#> 1005 y 1/0/T/F/TRUE/FALSE 2020-01-13 '/tmp/RtmpnpL2Ud/temp_libpath4a6169398a51/readr/extdata/challenge.csv'
#> .... ... .................. .......... ......................................................................
#> See problems(...) for more details.
challenge <- read_csv(readr_example("challenge.csv"), guess_max = 1500)
#> Parsed with column specification:
#> cols(
#> x = col_double(),
#> y = col_date(format = "")
#> )
(If you want to suppress the printed specification, just provide the dummy spec col_types = cols()
)
You can now access the guessing algorithm from R: guess_parser()
will tell you which parser readr will select.
The date time parsers recognise three new format strings:
%I
for 12 hour time format:
Note that parse_time()
returns hms
from the hms package, rather than a custom time
class
%AD
and %AT
are “automatic” date and time parsers. They are both slightly less flexible than previous defaults. The automatic date parser requires a four digit year, and only accepts -
and /
as separators. The flexible time parser now requires colons between hours and minutes and optional seconds.
If the format argument is omitted in parse_date()
or parse_time()
, the default date and time formats specified in the locale will be used. These now default to %AD
and %AT
respectively. You may want to override in your standard locale()
if the conventions are different where you live.
readr now contains a full set of efficient lower-level readers:
read_file()
reads a file into a length-1 character vector; read_file_raw()
reads a file into a single raw vector.
read_lines()
reads a file into a character vector with one entry per line; read_lines_raw()
reads into a list of raw vectors with one entry per line.
These are paired with write_lines()
and write_file()
to efficient write character and raw vectors back to disk.
read_fwf()
was overhauled to reliably read only a partial set of columns, to read files with ragged final columns (by setting the final position/width to NA
), and to skip comments (with the comment
argument).
readr contains an experimental API for reading a file in chunks, e.g. read_csv_chunked()
and read_lines_chunked()
. These allow you to work with files that are bigger than memory. We haven’t yet finalised the API so please use with care, and send us your feedback.
There are many otherbug fixes and other minor improvements. You can see a complete list in the release notes.
A big thanks goes to all the community members who contributed to this release: @antoine-lizee, @fpinter, @ghaarsma, @jennybc, @jeroenooms, @leeper, @LluisRamon, @noamross, and @tvedebrink.