Strengthen your programming skills with tips and techniques from the experts
PROC SGPLOT writes a graph template and uses it to create a graph. You can edit the template and then create a modified graph.
Strengthen your programming skills with tips and techniques from the experts
PROC SGPLOT writes a graph template and uses it to create a graph. You can edit the template and then create a modified graph.
Recently, SAS shipped the fourth maintenance of SAS 9.4. Building on this foundation, SAS Studio reached a new milestone, its 3.6 release. All editions have been upgraded, including Personal, Basic and Enterprise. In this blog post, I want to highlight the new features that have been introduced. In subsequent posts
In a previous blog, Random Sampling: What's Efficient?, I discussed the efficiency of various techniques for selecting a simple random sample from a large SAS dataset. PROC SURVEYSELECT easily does the job: proc surveyselect data=large out=sample method=srs /* simple random sample */ rate=.01; /* 1% sample rate */ run; Note: