Hi,
I want to write for example µ in axis labels but it doesn't work.
I keep the label in a macro variable and if I do the instruction put in order to see it in the log, the µ is written but on the graph, there is only °
Here is my code if it can help you :
goptions reset=all ftext=sasmonospace htext=1 ctext=black devmap=winansi keymap=winansi;
axis1 order=&min to &max label=("&x_lab ");
axis2 label=(angle=90 "&y_lab ") order=&min to &max;
symbol1 interpol=join value=none color=blue line=20;
symbol2 interpol=join value=none color=red line=1;
symbol3 interpol=none value='Circle' color=black;
legend1 label=none
mode=reserve
position=(bottom center outside)
offset=(0.5,)
across=3
shape=line(4)
value=('Perfect Concordance Line' 'Observed Concordance Line' ' ');
%macro graphe(yf,xf,minf,maxf);
%if &minf=0 or &maxf=0 %then %do;
proc gplot data=graphe_finale;
plot &yf*&xf Ybissector*i Yobserved*i/ overlay haxis=axis1 vaxis=axis2 legend=legend1 vminor=0 hminor=0 annotate=annoter ;
run;
quit;
%end;
%else %do;
proc gplot data=graphe_finale;
plot Ybissector*i Yobserved*i &yf*&xf/ overlay haxis=axis1 vaxis=axis2 legend=legend1 href=0 vref=0 vminor=0 hminor=0 annotate=annoter ;
run;
quit;
%end;
%mend graphe;
%graphe(&Y,&X,&min,&max)
By advance, thanks a lot,
Céline