how to plot graph of simple function in sas? -
is there way plot simple graph in sas without using data set? instance y=x^2. multiple functions in same graph? feel should easy, i'm still new sas ive had trouble figuring out.
to best of knowledge, every graphing proc requires @ least 1 input dataset. isn't hard make one, though, e.g.
data parabola; x = 1 10; y = x**2; output; end; run;
Comments
Post a Comment