What are the data types that sas contain?
Answer / Mayank Kumar Singh
SAS contains two main data types: Character and Numeric. Character data can be further divided into Byte, Word, and Graph data.
| Is This Answer Correct ? | 0 Yes | 0 No |
how we can call macros with in data step?
how can u extract,transform and loading?
What are the analysis datasets created, and what are the new variables created in CLINICAL SAS
1 Answers Accenture, Sciformix,
Explain the difference between using drop = data set option in set and data statement?
Do you know the features of sas?
it will become easy if uuu provide website linkssss and list of consultanciessssss
what is the difference btw proc means and proc univariate?
/*i have the following dataset.*/ data score; input marks ; datalines; 10 20 30 40 50 60 70 80 90 100 ; run; Now i should get the result as sum of 1 to 5 i.e(10+20+30+40+50)=150 and 2 to 6 i.e(20+30+40+50+60)=200 and 3 to 7 i.e(30+40+50+60+70)=250 and so on. how to get it. thanks in advance
What is SAS?
If you could design your ideal job, what would it look like?
Do you need to know if there are any missing values?
There is a field containing a date. It needs to be displayed in the format “ddmonyy” if it’s before 1975,”dd mon ccyy” if it’s after 1985, and as ‘disco years’ if its between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT.