what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
No Answer is Posted For this Question
Be the First to Post Answer
what does .. meant in sas macros
how to generate means for every subject;
how to shift the rows to cols? eg: i have like field1 field2 field3 10 20 20 this should be displayed as field1 10 field2 20 field3 30 (without the obs col) how do this?can i use transpose or tell me suitable way to do this?
how many types of MERGE?
why is sas considered self-documenting? : Sas programming
what is AE onset date and what is RDS?
my problem is to export my report to xsl.i can do that.but the problem is my report has 3 headings first heading should be printed with the merging of (1-5)cells and heading 2 should be of merge(2-4)cells?how to do this condition?
In which format does Date stores in sas..? What is the use of DATE in SAS.?
what is the difference btw proc means and proc univariate?
Difference b/n proc means and proc summary procedures?
How to include or exclude specific variables in a data set?
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.