Open
Description
I have a link in a public repository in AWS S3
https://s3-eu-west-1.amazonaws.com/stratominerdata/developer.stratominer.com/processedData/testingS3/default/testingS3_raw_plate_10_rep_1.fst which I can download anywhere
but when I try to load it in to memory directly from the link it fails... why?
read.fst('https://s3-eu-west-1.amazonaws.com/stratominerdata/developer.stratominer.com/processedData/testingS3/default/testingS3_raw_plate_10_rep_1.fst')
ERROR:
Error opening fst file for reading, please check access rights and file availability
I have an equivalent file in csv
which can be read in directly by
data.table::fread('https://s3-eu-west-1.amazonaws.com/stratominerdata/developer.stratominer.com/rawData/testingS3/default/file01.txt')