Hello, I'm using SAS 9.4 full edition. I am trying to do a median regression analysis. I pasted the base code below but it's not working. I also pasted the error messages below. proc quantreg ci=resampling;
class VARIABLE1 (param=ref ref='CONTROL');
model COST=VARIABLE1 VARIABLE2 VARIABLE3 / quantile=0.25 0.5 0.75;
run; ERROR 22-322: Syntax error, expecting one of the following: a name, ;, -, /, :, _ALL_, _CHARACTER_, _CHAR_, _NUMERIC_. ERROR 76-322: Syntax error, statement will be ignored. Thanks very much in advance for the help! Best Laura
... View more