Learn SAS for FREE Day17 Advanced SAS I took a month’s break from posting here to give SAS Base certification.…
ARRAYS in SAS We move on to the last day of our learning for SAS Base Certification. There will be…
PROC FREQ Suppose, we are provided a data set from a hospital wherein they are comparing two medicines for same…
PROC MEANS Proc Means is used for generating statistical details. Suppose our data in a dataset Employee is as below:…
PROC PRINT Proc print is one of the most widely used Procedures in SAS and reasons we shall soon find…
OUTPUT DELIVERY SYSTEM (ODS) ODS as the name suggests in just a system to deliver the output of our procedures to…
CASE STATEMENT IN SAS Case statements exists in every language and below is one such example from SQL: In the…
DO Loops in SAS Do loops are widely used in SAS programming, just like other languages like Java, C etc,…
Auto conversion of Char to Numeric and vice versa Char to Numeric Suppose we have age as char variable…
PROC SORT Proc sort allows to sort data based on certain set of columns, by default ascending order or else…