Trying again... I'm having trouble with a homework assignment. I need to remove rows using a where and set statement but I'm not sure how exactly to do that? "In a second datastep remove the rows for all candidates except Trump and Clinton. Use a set statement with a where statement." Any help would be greatly appreciated. More info: A text file called president election 2016.csv on the class website contains data on the 2016 presidential election by county within Minnesota. The first 5 records are as follows: MN,1,AITKIN,0301,5516,9231 MN,1,AITKIN,0401,3134,9231 MN,1,AITKIN,0801,67,9231 MN,1,AITKIN,1101,124,9231 MN,1,AITKIN,1201,263,9231 There are 6 variables: 1) State abbreviation (MN on all records); 2) a county number (1-87); 3) name of county; 4) candidate code (0301=Trump, 0401=Clinton, 0801=Stein, 1101=McMullin, 1201=Johnson); 5) number of votes cast for that candidate in the county; 6) total votes cast in that county. Note: There are five records for each county, one for each of the top 5 candidates. Records for other candidates have been removed.
... View more