what is the usage for assigning error=1 in a dataset ?
Answers were Sorted based on User's Feedback
Answer / poonam
it means only one error of that type will be printed.
| Is This Answer Correct ? | 2 Yes | 5 No |
Which is the best training institute for SAS in Delhi. Please reply
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.
What are the differences between proc means and proc summary?
What is PROC in SAS?
What are the difficulties u faced while doing vital signs table or dataset?
How many versions came upto now in SAS?
What is the basic syntax of a sas program?
How you can read the variables that you need?
what are the softwares and applications that are used most frequently used by sas bi applications developers? : Sas-bi
Name and describe few sas character functions that are used for data cleaning in brief.
i have multiple .csv files in a unix directory. every file is having variable names as header.even for empty file also. suppose take 3 files a.csv b.csv c.csv a.csv contains data as name;age,salary; raja;34;4000; ravi;33;5000; kumar;25;3000; b.csv contains data as name;age,salary; ajay;40;4500; and c.csv contains name;age,salary; (only headers) Now i want to import and append all these files in to a single dataset. i tried infile statement with *.csv to import all at a time. but i m not getting correct data. please help me . its urgent. thank you in advance
Describe 5 ways to do a “table lookup” in SAS?