Top 5 Reasons Why You Should Use SAS Viya With SingleStore For Data Dominance

The strategic partnership between SAS and SingleStore gave the new edge to the modern, cloud-based analytical technology. SAS has dominated data analytics for many decades and it continues to do so by partnering with the key cloud technology leaders such as Microsoft Azure and SingleStore (formerly MemSQL). What is SAS (Statistical Analysis Software) ? SAS … Read more

How To Print All The Datasets From A SAS Library

The PROC PRINT procedure is usually used to view dataset observations in SAS. You need to specify the dataset name with data=option in the proc print procedure. Here is a simple example of how to print a dataset in SAS.  Basic Syntax: proc print data=data-set-name;run; Here is the sample example to print sashelp.class dataset. /* … Read more

CALL EXECUTE In SAS (With 10+ Examples)

The SAS macro language is an extremely flexible tool which facilitates SAS programmers with the ability to re-run the same code for a set of different parameters. It can be done using DO-LOOP by passing required parameters but alternatively you could also use the CALL EXECUTE routine which is more robust and efficient.  Call Execute … Read more

PROC PRINT In SAS (With 10+ Examples)

You can use the PROC PRINT procedure to print observations in a SAS data set using some or all of the variables. It’s one of the oldest yet relevant SAS procedures which is being used widely. With the new more advanced procedure like PROC REPORT, ODS system, PROC PRINT kind of left behind in the … Read more

PROC REPORT In SAS (With 15+ Examples)

PROC REPORT statement combines features of the PROC PRINT, PROC MEANS, and PROC TABULATE procedures with features of the DATA step in a single report-writing tool that can produce a variety of reports. You can use PROC REPORT procedure to create a report with the SAS dataset and in the formats you would like to … Read more

PROC TABULATE In SAS (With 15+ Examples)

The TABULATE procedure displays descriptive statistics in tabular format, using some or all of the variables in a data set. You can create a variety of tables ranging from simple to highly customised. The PROC FREQ, PROC MEANS, and PROC REPORT generates the statistical results but with the restricted output datasets. PROC TABULATE produces high … Read more

PROC TRANSPOSE In SAS (With 10+ Examples)

With the PROC TRANSPOSE procedure you can create an output data set by restructuring the values in a SAS data set, transposing selected variables into observations. Usually datasets are structured but sometimes you may get the data in different formats, depending on how data is being collected at source. There are other external factors such … Read more

How To Compare (matching/non-matching) Rows From SAS Data sets

You can compare and find the matching and non-matching rows from two datasets in SAS using data merge technique. In the data merge technique data step statement is used with merge statement. In this method you can compare multiple datasets by listing them after the MERGE statement and create new datasets for matching and non-matching … Read more

PROC COMPARE In SAS [Complete Guide With 10+ Examples]

The COMPARE procedure compares the contents of two SAS data sets, selected variables in different data sets, or variables within the same data set. PROC COMPARE compares two data sets: the base data set and the comparison data set. The procedure determines matching variables and matching observations. Matching variables are variables with the same name … Read more

How To Compare Two Tables In SAS

You can easily compare two tables in SAS using different methods. Comparison can be done on sampled data or the entire datasets. The following methods can be used to compare two tables by identifying matching, non-matching, and common observations from both the datasets. PROC SQL DATA MERGE PROC COMPARE The following two sample datasets will … Read more