I need to save feather data in a more compact format. After making several tests I found that after using the "zip" function the size of the "feather" data file reduce up to 90%.
library(feather)
library(zip)
# Write data in feather format
write_feather(df, "data.feather)
# Write data in zip feather format
zip("data.feather.zip", "data.feather")
# How to have commands like these ones without using disk space for temp file?
write_feather(df, "data.feather.zip", format = "zip")
df <- read_feather("data.feather.zip", format = "zip")
So, there is a simple question - does anyway to save data as a "feather" file with let say argument "compressed = zip" to save disk space.
Thanks!