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 PRINT Procedure
What is the SAS PRINT Procedure?
✍: FYIcenter.com
PRINT Procedure prints the given data set into
a nice looking table.
Here is a simple example of a PRINT Procedure:
DATA Sample;
Weight = 0;
DO Id = 1 to 6;
Weight = RAND('UNIFORM', 60, 90);
OUTPUT;
END;
PROC PRINT DATA=Sample; /* "Sample" specifies the data set to use */
If you run the above SAS program, you will get the following table in the results:
Observation Weight Id
------------------------
1 68.2987 1
2 60.3991 2
3 74.9203 3
4 86.2947 4
5 63.1514 5
6 83.7675 6
2021-06-19, 2602🔥, 0💬
Popular Posts:
What is the port number used for the control connection in FileZilla Server? How to change control c...
What is "Microsoft Access Outlook Add-in for Data Collection and Publishing" COM Add-in in Outlook 2...
I have an Apple iPad Air Model MD788C/A. Is it good? Yes. Apple iPad Air Model MD788C/A is a very go...
How to add a new layout to the slide master in PowerPoint? In my PowerPoint presentation, I need to ...
How to open firewall for the FTP command-line tool on Windows for data connections in active mode? I...