Quantcast
Channel: ListenData
Viewing all articles
Browse latest Browse all 97

How to Use Not Equal To Operator in SAS

$
0
0

This tutorial explains various ways to use the not equal to condition in SAS, along with examples.

1. ^= Operator

In SAS, ^= operator means "not equal to". In this example, we are telling SAS to filter out Audi cars from the "cars" dataset in the sashelp library.

data outdata;
set sashelp.cars;
if make ^= "Audi";
run;
To read this article in full, please click here

Viewing all articles
Browse latest Browse all 97

Latest Images

Trending Articles



Latest Images