Data Munging in SAS
How to Create an Empty Dataset in SAS
There are two common ways to create an empty dataset in SAS:
Method 1: Create Empty Dataset from Scratch
data empty_data;
attrib
var1...
Data Munging in SAS
SAS: How to Use SET Statement with Multiple Datasets
You can use the following basic syntax to include multiple datasets in the set statement in SAS:
data new_data;
set data1 data2...
Data Munging in SAS
How to Remove Special Characters from Strings in SAS
The easiest way to remove special characters from a string in SAS is to use the COMPRESS function with the ‘kas’ modifier.
This function uses...
Data Munging in SAS
How to Add Days to Date in SAS (With Example)
The easiest way to add days to a date variable in SAS is to use the INTNX function.
This function uses the following basic syntax:
INTNX(interval,...
Descriptive Statistics in SAS
How to Create a Scatter Plot Matrix in SAS
A scatter plot matrix is exactly what it sounds like – a matrix of scatterplots.
This type of matrix is useful because it allows you...
Descriptive Statistics in SAS
How to Create Tables in SAS (With Examples)
You can use proc sql to quickly create tables in SAS.
There are two ways to do so:
1. Create a Table from Scratch
2. Create a...
Data Munging in SAS
How to Remove Leading Zeros in SAS (With Examples)
The easiest way to remove leading zeros in a character variable in SAS is to use the INPUT function to convert the variable to...
Subscribe
- Never miss a story with notifications
- Gain full access to our premium content
- Browse free from up to 5 devices at once
Must read