Hello, I'm trying to perform proc mi with FCS logistic statement and the link=glogit option. When I try to run the code, I get the below error message associated with link=glogit. It seems to not recognize the link option. Maybe I'm making a coding error somewhere? proc mi data= fpgc_for_mi nimpute=1 out=fpgc_mi ;
class state_res_num state_tx_num;
var state_res_num state_tx_num;
fcs logistic(state_res_num=state_tx_num /link=glogit);
run; ERROR 22-322: Syntax error, expecting one of the following: ), CLASSEFFECT, CLASSEFFECTS, DESC, DESCENDING, DETAILS, K, ORDER,PCOV, PRIOR. ERROR 202-322: The option or parameter is not recognized and will be ignored. I'm using SAS enterprise guide 7.15 and the server is version 9.4.
... View more