Running the SAS code below generates this error: ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, a missing value, INPUT, PUT. 30 run; SAS Code: /*use the COMPBL function to read Location and convert each occurrence of two or more consecutive blanks into a single blank*/ data weather_japan_clean; set pg2.weather_japan; NewLocation=compbl(Location); NewStation= ; run; This can be found as a response to Lesson 3 > Using Character Functions > Activity > 1. Kindly review and assist provide correct response
... View more