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 - SCATTER with ELLIPSE Graph
How to generate SCATTER with ELLIPSE graphs with SAS SGPLOT procedure?
✍: FYIcenter.com
If you have a set of X-Y data pairs,
you can present the data with a SCATTER graph and
its boundary with an ELLIPSE graph.
The following SAS program shows a combination of SCATTER and ELLIPSE graphs on the example data set, sashelp.class, provided in the SAS University Edition:
proc sgplot data=sashelp.class; scatter x=height y=weight; ellipse x=height y=weight;
The result looks like the following:
2021-08-21, 3341🔥, 0💬
Popular Posts:
How to Install and Start Skype Meeting App in Google Chrome? You can follow this tutorial to install...
How to add or change the footer on a layout in PowerPoint? I want my slide footers to have the same ...
How to open a Web Archive (.mht or .mhtml) file correctly in Firefox browser? I converted a word doc...
How to find all section breaks in a Microsoft Word document? I want to review them. Section breaks i...
How to insert a dynamic field code manually in Microsoft Word? I know how the field code works. If y...