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

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -