When I run the following code, I do not get the "parameterestimates" table. Instead, it gives the following warnings: WARNING: Output 'ParameterEstimates' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify that the NOPRINT option is not used. WARNING: Output 'SplineKnots' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify that the NOPRINT option is not used. WARNING: Output 'ParameterEstimates' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify that the NOPRINT option is not used. Here are my code. Any help please? proc surveyreg data=zinc.imputed_srtd;; weight nat_weight_bio; cluster psu_no_ov; strata newstrata; class sex area edu_mt p_activity cat_crp; format edu_mt edu. CAT_CRP CRP. AREA AREA.; effect znspln = spline(zns_unic / naturalcubic basis=tpf(noint) knotmethod=PERCENTILELIST(5 27.5 50 72.5 95)); model mean_dbp = znspln age_in_yr sex area edu_mt p_activity cat_crp; OUTPUT OUT=ZINC.RESIDUALS P=P_HAT L=LOWER U=UPPER; ods select ParameterEstimates SplineKnots; ods output ParameterEstimates=zinc.PE; run;
... View more