Question: Book -Learning SAS by Examples - by Cody Chapter-8 Section 8.9 problem 7 Use an iterative DO loop to plot the following equation: y =
Book -Learning SAS by Examples - by Cody
Chapter-8 Section 8.9 problem 7
Use an iterative DO loop to plot the following equation:
y = 3*x2 5*x + 10
Use values of x from 0 to 10, with an increment of .10. Use the code below to display the resulting equation.
title "Problem 7";
proc sgplot data=plotit;
series x=x y=y;
run;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
