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:
SAS PLOT Procedure
What is the SAS PLOT Procedure?
✍: FYIcenter.com
PLOT Procedure generates a character-based plot with
a given pair of two variables.
Here is a simple example of a PLOT Procedure:
DATA Sample;
Weight = 0;
DO Id = 1 to 6;
Weight = RAND('UNIFORM', 60, 90);
OUTPUT;
END;
PROC PLOT DATA=Sample; /* "Sample" specifies the data set to use */
PLOT Weight*Id='*' /* Specifies vertical/horizontal variables */
/ VPOS=15 HPOS=60; /* Specifies vertical/horizontal size of the plot */
If you run the above SAS program, you will get the following plot in the results:
Plot of Weight*Id. Symbol used is '*'.
Weight |
90 + *
| *
|
80 +
|
|
70 +
| * * *
| *
60 +
--+----------+----------+----------+----------+----------+---
1 2 3 4 5 6
Id
2021-06-19, 2290🔥, 0💬
Popular Posts:
What are those search options provided on Library Genesis? Library Genesis provides 3 types of searc...
Why am I getting the "You now have two copies of a file" error from OneDrive for Windows? You will g...
How to make my presentation beautiful by applying a built-in theme provided by Office PowerPoint 200...
How to test I/O performance on INTEL SSDPEKKF256G8L SSD (Solid State Disk) with SQLIO? INTEL SSDPEKK...
How to test I/O performance on INTEL SSDPEKKF256G8L SSD (Solid State Disk) with SQLIO? INTEL SSDPEKK...