Monday, December 08, 2008

How to output SAS dataset in Stata readable format

How to output SAS dataset in Stata readable format

One of ways is:
        LIBNAME output xport 'c:\Projects\eye.xpt';
        options validvarname=v6;
        proc copy in=work out=output memtype=data;
                select eye;
        run;
        options validvarname=v7;

No comments: