Create a data set called RANGE that will be used by PROC SGRENDER.
options cmplib=sasuser.funcs; data range; do Time=0 to 2 by .01; output; end; run;