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

java - unable show chart in xls document using jasper reports -

javascript - How to change image src on success AJAX -

java.lang.RuntimeException: Could not generate dummy secret at sun.security.ssl.RSAClientKeyExchange.<init> -