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 is PhaseIII, ODS, TLG, Macro and Proc in SAS
how does sas handle missing values in assignment statements? : Sas programming
what type of reports you are generating in your company...???
2 Answers GSK GlaxoSmithKline,
explain the key concept of sas? : Sas-administrator
Name validation tools used in SAS
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
how to intersect the tables by using PROC MIXED?
How do you use the do loop if you don’t know how many times you should execute the do loop?
How would you define the end of a macro?
How does Mr.Lanka Srinivas teach SAS? Are his accomplishments real? What are the future prospects for SAS?
Hi im new to sas. I have a file with some charecter variables and some numeric variables now i want to load charecter variables into one datastep and numeric variables into another data step pls let me know Thanks
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.