I am trying to read .sas7bdat file from default container. I have tried following till now:
sas_file <- RxSasData("wasbs://container@storageaccount.blob.core.windows.net/abc/xyz.sas7bdat")
sas_df <- rxImport(sas_file)
but I get following error:
The file 'wasbs://container@storageaccount.blob.core.windows.net/abc/xyz.sas7bdat' does not exist.
Could not open data source. Error in doTryCatch(return(expr), name, parentenv, handler) : Could not open data source.
File exists at the mentioned location in code. Still it throws error. Can someone please help me this?