Data Challenge Lab Home

Exporting data [wrangle]

(Builds on: Parsing basics)

There are three main reasons you might want to export a tibble from R:

Generally, csv is a good way to store data: it’s simple, and can be read by a large variety of tools (including GitHub which displays it nicely online). However, it doesn’t store some important metadata, and it’s not optimised for efficient reading. For those scenarios, you may want to use RDS or feather files instead.

Readings