gesistsa / rio

🐟 A Swiss-Army Knife for Data I/O
http://gesistsa.github.io/rio/
599 stars 76 forks source link

Improvements related to `readODS` 2.1.0 #358

Closed chainsawriot closed 11 months ago

chainsawriot commented 12 months ago
temp_ods <- tempfile(fileext = ".ods")
rio::export(list("some_car_data" = mtcars, "some_flower_data" = iris), temp_ods)
#> Error in rio::export(list(some_car_data = mtcars, some_flower_data = iris), : 'x' is not a data.frame or matrix

Created on 2023-09-11 with reprex v2.0.2

temp_fods <- tempfile(fileext = ".fods")
rio::export(mtcars, temp_fods)
#> Error: Format not supported

Created on 2023-09-11 with reprex v2.0.2