libname ashish "/folders/myfolders";
proc import datafile="/folders/myfolders/Car_sales.csv" out=Car_sales dbms=csv replace;getnames=yes;
proc copy in=work out=ashish;
select Car_sales;
proc print data=ashish.Car_sales;
IF Price_in_thousands='.' then delete;
run;
If you want to modify the data set you need to use a data step.
data filtered;
set ashish.car_sales;
where not missing(price_in_thousands);
run;
If you want to filter the results to display in Proc print then use a where.
Where not missing(price_in_thousands );
Proc print does not allow If or delete.
To show the records where a specific condition is needed use a WHERE clause:
WHERE Price_in_Thousands ne . ;
If you want to modify the data set you need to use a data step.
data filtered;
set ashish.car_sales;
where not missing(price_in_thousands);
run;
If you want to filter the results to display in Proc print then use a where.
Where not missing(price_in_thousands );
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.