如何刪除SAS數據步驟中的重複項。如何刪除SAS數據中的重複步驟
data uscpi;
input year month cpi;
datalines;
1990 6 129.9
1990 7 130.4
1990 8 131.6
1990 9 132.7
1991 4 135.2
1991 5 135.6
1991 6 136.0
1991 7 136.2
;
run;
PROC SORT DATA = uscpi OUT = uscpi_dist NODUPKEY;
BY year ;
RUN;
我可以使用proc步驟,但是如何在數據步驟中將其刪除。在此先感謝
這裏是一種用散列對象做到這一點:http://stackoverflow.com/a/5705176/17743 – cmjohns
哪些是你想保持?只要按照「年份」進行操作,就會隨機刪除記錄。我不認爲這是你想要的? – Victor