Is it possible to read a zipped sas
file (or any kind or file) from s3
using r?
Here is what I'm trying:
library(aws.s3)
library(haven)
s3read_using(FUN = read_sas(unzip(.)),
bucket = "s3://bucket/",
object = "file.zip") # and inside is a .sas7bdat file
but it's obviously not recognizing the .
. I have not found any good info on reading a .zip
file from s3