What is the purpose of using the N=PS option?
Answers were Sorted based on User's Feedback
Answer / chaitanya
The N=PS option creates a buffer in memory which is large
enough to store PAGESIZE (PS) lines and enables a page to
be formatted randomly prior to it being printed.
| Is This Answer Correct ? | 21 Yes | 2 No |
Answer / ankit
N=PS option allows access to full page at one time (default is one line or record at a time)
| Is This Answer Correct ? | 3 Yes | 2 No |
How to read an input file in sas?
how can you create zero observation dataset? : Sas programming
Are you involved in writing the inferential analysis plan? Tables specfications?
Explain what is SAS informats?
How to Rename Library?
Why and when do you use proc sql?
Dear all, proc means data=dsn noprint completetypes; class trtmntgroup /preloadfmt; output out=tot n=n; format trtmntgroup trtf. ; by vstgrp descending severity; run; This is the code I used for AE table. I got the values without giving the variable ‘trtmntgroup(numeric)’ in var statement. And if I give the var statement for that variable i’m getting the same values.How is that possible? What is the difference between class and var statement? Could any one explain me how does proc means work at the back end. And what is the difference between _freq_ value and N value in proc means. Thanks and regards, Rajesh.
How can I remove header from output data set?
Can we use where and having clauses in a single SAS program. ex: proc sql; select a,b,c from test where state in 'KA' and having <some condition>. Is the above program run correctly, if not why ?
How do you delete duplicate observations in sas?
How would you code the criteria to restrict the output to be produced?
What is the difference between using drop = data set option in data statement and set statement?