What is instream data in SAS?
Answer / aman
If we type data directly into sas program from keyboard , then the data is internal to our program.We do this when we have small amount if data or When we test a program with small test Data Set.
We use DATALINES statement to indicate internal data.
| Is This Answer Correct ? | 2 Yes | 0 No |
What is SAS informats?
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
how do u validate sas program
data abc; input x y ; cards; 1 2 5 6 7 8 7 8 1 7 5 7 ; run; Proc Freq data=abc; tables x*y / chisq nopercent nocol norow PLCORR; RUN; If we run the code, we have Polychoric Correlation = 0.9054 in the last table. I want to extract this particular entry with the value. Means I will create one dataset in which this value will be stored/extracted. I need your help in coding this. Please help me out.
What is the difference between where and if statement?
what is change analysis in sas di ? : Sas-di
Can Some one Explain How the Datasets from SAS can be loaded in to the MVS OS?
What are the Aggregate functions in SQL ?
Does anybody have SAS Training manual or documentation or can you refer me any book to have better understanding on SAS. I am fresher to SAS tool. (Ready to pay)
i have a macro variable var1,var2. i want titles for the each macro variable separately? how it is possible?
If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to do?
how do you read binary data in sas?