Filter your SAS Enterprise Guide data with a WHERE clause

Are you a VIEWTABLE fan from the SAS Windowing Environment (a.k.a. Display Manager, DMS, PC SAS)? If so, the latest version of SAS Enterprise Guide has a new feature that you’ll love. With the latest update to SAS Enterprise Guide 7.1 (7.11), you can now subset your data in the […]

The post Filter your SAS Enterprise Guide data with a WHERE clause appeared first on The SAS Dummy.

Calculating Covariance by SAS, A Brutal Way

It was very disappointed that there is only one built-in method to calculate covariance in Base SAS: that’s in PROC CORR (while you can also do it in SAS/IML, of course): The following is a quick-and-dirty way to get a function like %COV: %macro COV(data, var1,var2); %local _cov; %let rc = %sysfunc(dosubl(%str(     ods output […]

Import .Rdata to SAS, along with Labels

I didn’t play with SAS/IML for a while. I call it back when I need to read some R format data. Technically, .Rdata is not a data format. It’s rather a big container to hold bunch of R objects: In this example, when a .Rdata is loaded, 3 objects are included where ‘data’(the ‘real’ data) […]

Creating your own customized graphs for SAS analytic procedures

In recent releases of SAS, you can use Output Delivery System graphics or ‘ODS graphics on’ to produce nice graphical output for most of the analytic procedures. These default graphs are nice, but when you want your graphs to look “a certain way” SAS also lets you create your own custom graphs! […]

The post Creating your own customized graphs for SAS analytic procedures appeared first on The SAS Training Post.