data raw; set rawdata;
keep day year title number;
proc sort data=raw nodupkey; by day year; run;
How could I modify this code to keep the day and year with the highest number if raw data contained multiple different values of numbers, instead of just a single value?
data raw; set rawdata;
keep day year title number;
proc sort data=raw ;
by day year descending number; run;
data want;
set raw;
by day year;
if first.year;
run;
Would the above work?
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Registration is open
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!