What are _numeric_ and _character_ and what do they do?
_numeric_ & _character_ are mostly used in:
1. Defining arrays: if an array is defined as _numeric_ that means it expects all values stored in it to be numeric ONLY! And if we define array as _character_ it expects only character values to be stored within it
2. With proc print, if we use these, it prints only numeric or only character variables of the data set!
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the ways in which macro variables can be created in sas programming?
Name some categories in sas 9? : sas-grid-administration
what is sas data set?
Mention sas system options to debug sas macros.
What is the basic structure of the SAS base program?
What is _n_?
How to get second top scorer student from a class- table having different sections A, B, C & D? each section has same number of student.
what r the job openings SAS for fresher graduates !
What is the one statement to set the criteria of data that can be coded in any step?
What are the table names in oracle database...?
Explain proc sort?
Can you calculate the mean, median and mode of the following data set using data step logic? Don't use any function or procedure. data a; input age @@; datalines; 22 32 32 32 43 23 24 56 45 54 28 29 27 26 25 28 30 20 18 37 36 47 46 56 19 20 ; run; I have calculated the mean which i have posted in the answer section.