OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 68 69 data Mountain_USA; 70 set clean.'/home/u62245181/Today/bicycles.sas7bdat'; ______ 22 201 ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, ;, CUROBS, END, INDSNAME, KEY, KEYRESET, KEYS, NOBS, OPEN, POINT, _DATA_, _LAST_, _NULL_. ERROR 201-322: The option is not recognized and will be ignored. 71 run; NOTE: The SAS System stopped processing this step because of errors. WARNING: The data set WORK.MOUNTAIN_USA may be incomplete. When this step was stopped there were 0 observations and 6 variables. WARNING: Data set WORK.MOUNTAIN_USA was not replaced because this step was stopped. NOTE: DATA statement used (Total process time): real time 0.00 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 902.09k OS Memory 24488.00k Timestamp 10/10/2022 10:05:40 PM Step Count 30 Switch Count 1 Page Faults 0 Page Reclaims 120 Page Swaps 0 Voluntary Context Switches 8 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 72 where Country = "USA" and Model = "Mountain_Bike"; _____ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 73 run; 74 75 title "USA models"; 76 proc print data=Mountain_USA noobs; 77 run;
... View more