I don't think you need PROC TEMPLATE here, SGPLOT seems to work fine, as long as the data is what you need.
data have;
input x y;
cards;
1 5
2 6
3 7
4 7.8
5 9
6 10
5 11
4 8
3 7.4
2 6.5
1 5.5
;;;;
run;
proc sgplot data=have;
series x=x y=y / markers;
run;
@DinoPut wrote:
Hi
I have been trying to create a hysteresis loop using Proc Template. Unfortunately, I couldn't find any sample code for it. The plot needs to have 'Mean response on Y-Axis, Concentration on X-axis & Time presented on the line as a loop. I would appreciate if someone could help me with a sample code. The hysteresis loop should look like below: