Sunday, April 28, 2024
No menu items!
HomeData Analytics and VisualizationHow to Use Not Equal To Operator in SAS

How to Use Not Equal To Operator in SAS

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

Read MoreListenData

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments