Reputation: 13
I am looking for a package which can read .sas7bvew in R. I was trying with haven, but it can only read .sas7bdat
I tried the following: (assume lib2 contains the data.sas7bvew file, and I am trying to save it at lib1)
data lib1.mydata;
set lib2.data;
run;
After the above step I can see data.sas7bdat is being created at lib1. And I can easily read the .sas7bdat file with R. Is there any way I can read the .sas7bvew file directly in R.
Upvotes: 0
Views: 679
Reputation: 51566
No.
There is no data in a view for R or any other non-SAS program to read.
Upvotes: 4