Hello community,
I am struggling finding the components for a normal distribution function using the parameter class, where should I find for each category the parameters to write my probability function.
My first step was to fit my function to my data like that:
ods graphics on /height=900 width=1600;
ods select DensityPlot;
proc hpfmm data=casuser.ds_11_15 gconv=0 plots=density(bins=90);
class reg_clim_num;
bayes MUPRIORPARMS((0, 2E12 ) (-40000, .) ) ;
model dk_cons =/ dist=normal k=2 /*parms(23000000 ., 34000000 ., 120000000 . )*/;
ods output PostIntervals=PostIntervals;
ods output PostSummaries=PostSummaries;
run;

Then I would like to define the parameters by my category variable reg_clim
ods graphics on /height=900 width=1600;
ods select DensityPlot;
proc hpfmm data=casuser.ds_11_15 gconv=0 plots=density(bins=90);
class reg_clim;
bayes MUPRIORPARMS((0, 2E12 ) (-40000, .) ) ;
model dk_cons = reg_clim/ dist=normal k=2 /*parms(23000000 ., 34000000 ., 120000000 . )*/;
ods output PostIntervals=PostIntervals;
ods output PostSummaries=PostSummaries;
run;
WARNING: Output 'DensityPlot' 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.
I got this warning with no plot distribution and with these outputs


I don't know how to interpret them. The mean has strange values and the reg_clim 15 has missing parameters.
Do you have any advice, thank you 🙂
I will upload my data and my output.