How to save a log file in SAS?

There are several ways to save a log file in SAS. However, the most straightforward way is to use the PROC PRINTTO Procedure.  PROC…

Proc Summary in SAS: Explained

Proc Summary in SAS: Explained

PROC SUMMARY in SAS procedures allows us to explore our data not only in terms of counts and distributions but also statistically. 

Ten Quick Uses of Proc Datasets

Ten Quick Uses of Proc Datasets

PROC DATASETS is a very useful SAS Procedure to manage, manipulate and modify your SAS datasets. it is more efficient than performing the same tasks with a Data Step. PROC DATASET is efficient because it does not need to read in or write observations of datasets to make modifications to them.

4 Little Tricks To Achieve The Best Results In PROC PRINT SAS.

4 Little Tricks To Achieve The Best Results In PROC PRINT SAS.

The Proc PRINT procedure is used to print observations in a SAS data set using all or some of the variables, you can create dynamic reports with the help of proc print, which could include groups of the data and calculating totals and subtotals for numeric variables.

Using PROC RANK for ranking variables

Using PROC RANK for ranking variables

Ranking of variables is often necessary to analyze the performance or gain an insight on which are the values are on top or at the bottom and by using PROC RANK procedure, there is no need to write complex code using PROC SORT, MACRO calls and DATA STEPS to rank or decile these scores or values.