Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
SGPLOT - Polynomial Regression with REG
How to do Polynomial Regression with REG graph using SAS SGPLOT Procedure?
✍: FYIcenter.com
If you want to do Polynomial Regression with REG graph using SAS SGPLOT Procedure,
you need to specify the "degree=n" option as shown
in this example with the sample data set, sashelp.cars:
proc sgplot data=sashelp.cars(where=(origin='USA')); reg x=horsepower y=mpg_city / degree=2 clm='CL Mean'; keylegend / location=inside position=topright across=1; xaxis grid; yaxis grid;
The result looks like the following:
2021-04-10, 3654🔥, 0💬
Popular Posts:
Why I am getting the "FTP over TLS is not enabled, users cannot securely log in" waring on my FileZi...
Why I am getting the "Warning: Unresponsive Script" message box? How to avoid this message box? When...
How to add ActiveX controls, like text command button, text box, check box, etc., to Presentation sl...
What is Web Companion that bundled FileZilla Client? Why Web Companion gets installed on my computer...
What is "Microsoft Access Outlook Add-in for Data Collection and Publishing" COM Add-in in Outlook 2...