Hi I am working on the PROC KDE and try to produce the Kernal density estimate but unfortunately I am not able to change the default title and footnote, Please find the code below I have tried with proc template and usual way of providing title and footnote. Can you please guide me? proc template; define statgraph Stat.KDE.Graphics.DensityPlot; dynamic _VAR1NAME _VAR1LABEL _VAR2NAME _VAR2LABEL; BeginGraph; EntryTitle "Produce the KDE graph with new title"; *entrytitle _VAR1LABEL _VAR2LABEL; layout Overlay / xaxisopts=(label="DENSITY") yaxisopts=(label="TMAX"); densityplot AVAL_TRT1 / kernel(); densityplot aval_trt2/ kernel(); EndLayout; EndGraph; end; run; ods listing close; ods listing gpath="c:/test"; ods graphics on /imagename="DensityPlot" ; ods escapechar = '^'; *goptions reset=all; *title "test" ; *footnote j=l h=9pt font="arial" "Program: xxx.sas"; proc kde data=lab_day1 ; univar aval_trt1 aval_trt2 / plots=densityoverlay; run; ods graphics off; ods listing; Many Thanks Chakra
... View more