Difference between informat and format?
No Answer is Posted For this Question
Be the First to Post Answer
What is program data vector (pdv) and what are its functions?
What SAS statements would you code to read an external raw data file to a DATA step?
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.
What is the difference between %put and symbolgen? : sas-macro
What is the difference between proportion and average?
How can you put a "trace" in your program?
what is sas business intelligence? : Sas-bi
proc means? proc sort? proc append? proc freq? proc print? proc content?
is there any difference between proc summary and proc means?
What is SAS? What are the functions does it performs?
What happens in the following code, if u type 8 instead of *? proc sql noprint; create table abc as select 8 from lib.abc; quit;
There are 200 observations in a dataset, i want to pull out the observation no's 100, 150,180,190 by using Proc SQL? How you can get it?