readr
readr copied to clipboard
Read flat files (csv, tsv, fwf) into R
Obviously Spanish is one of the many languages in South America, spoken by 9 out of 12 South American countries, but it's still just one of the languages spoken and...
When embedding readr::type_convert in other functions it can be inconvenient to have the Column specification message. I could silence it by wrapping it in suppressMessages(), but then I might miss...
I get a segfault error when running the code below, tested on two different Ubuntu machines. `vroom` (1.6.5) and `readr` (2.1.5) seem to be at the latest version currently available....
I often have to bulk convert a set of columns, some of which are of `character` type, while the others are `double`. When I try to use the `parse_number()` function...
I know R's read.csv stringsAsFactors option has caused a lot of confusion over the years, but I think it is a genuinely useful option to have (defaulting to FALSE). Most...
read_delim(I("d1\nJanuary 1, 2010"), delim = "|", col_types = cols(d1 = col_date("%B %e, %Y"))) # "%e" not work, but a "%d" works while our documentation says: Day: "%d" (2 digits), "%e"...
`read_csv()` fails to return data when a file is a remote gzipped csv file (downloading the file and reading in locally does work), example below: ```r remote_file
I want to export some data with TAB as the column delimiter (for which reason I'm using `write_tsv()`, however, I can't specify a decimal separator, which (in my case) makes...
[Zstandard](http://facebook.github.io/zstd/) compression is becoming increasingly popular, and its fast read times make it a convenient choice for storing tabular data. Files compressed in the `.zst` format offer both space savings...
I know this issue has been raised before, for example, #976. When users call `read_csv` to import data without specifying the variable type of each column, `read_csv` does the smart...