Re: 2014 Malawi MIS Survey [message #15831 is a reply to message #15824] |
Mon, 24 September 2018 15:35 |
gotham
Messages: 2 Registered: September 2018
|
Member |
|
|
I solved my own problem (thank for nothing ;]).
For anyone else who has the same issue I did....
Here is what I did:
*Create new library caleld malawi;
libname malawi '/folders/myfolders/MProject/MWKR71SD';
run;
data malawi.malpro;
set malawi.MWKR71FL;
run;
proc print data=malawi.malpro;
run;
I created a new library to the exact folder I downloaded from the DHS website. Then I created a new dataset from the file(s) found in that library's folder. After that, I *plan* on selecting on the variables I want to look at, then printing the data.
Otherwise, there are like 850+ variables and 2000+ observations and printing takes forever.
|
|
|