The aim of rio is to make data file I/O in R as easy as possible by implementing four simple functions in Swiss-army knife style:import() provides a painless data import experience by automatically choosing the appropriate import/read function based on file extension (or a specified format ...
export() can also write multiple data frames to respective sheets of an Excel workbook or an HTML file: export(list(mtcars = mtcars, iris = iris), file = "mtcars.xlsx") Supported file formats rio supports a wide range of file formats. To keep the package slim, several formats are suppo...