Hi users and members, is it possible to get the function of a prediction ellipse or at least the length, height and centre? If yes, then how do i add this to my code?
Code:
/* 95% prediction ellipse */
proc sgplot data=combined_values;
scatter x=new_x y=new_y / markerattrs=(symbol=circlefilled);
ellipse x=new_x y=new_y / alpha=0.05 lineattrs=(thickness=2 color=red) type=prediction;
title "diagram";
xaxis label="x-Werte" min=0 max=&max_val;
yaxis label="y-Werte" min=0 max=&max_val;
run;
thanks for your help!