I have a file in sas7bdat format thats 132mb large. I don't have SAS on my computer, i received this file from another statistician.
I try to import the sas7bdat file using the sas7bdat package and the read.sas7bdat
function which has worked for me previously.
This is the import code:
biostat <- read.sas7bdat(file="/Users/Phil/Desktop/Work/Study/infwork.sas7bdat")
When I do this i receive this error
Error in read.sas7bdat(file="/Users/Phil/Desktop/Work/Study/infwork.sas7bdat") :
file contains compressed data
I haven't been able to figure out why i receive this error and according to some sources this can only be fixed in SAS using compress=NO
or compress=binary
to compress the file and then import it to R, the problem is I don't have SAS, is their a way around this problem?
All help i appreciated!