Open stochastiq opened 6 years ago
We worked it out, should be: x<-azureGetBlob(sc, blob = "XXXX', storageAccount = "XXXX", container = "XXX", directory = "XXXX", resourceGroup = "XXXX", type = "raw")
q<-tempfile() f<- file(q, 'wb') writeBin(x, f) close(f)
df<-read.xlsx(q, sheetIndex=2, stringsAsFactors=F)
There are 2 methods we’re trying:
In this case, we've tried: azureGetBlob(sc, blob = "XXXX', storageAccount = "XXXX", container = "XXX", directory = "XXXX", resourceGroup = "XXXX", type = "text")
and
azureGetBlob(sc, blob = "XXXX', storageAccount = "XXXX", container = "XXX", directory = "XXXX", resourceGroup = "XXXX", type = "raw")
both do not return the file. I guess, how do I read each individual sheet into R then?