what is the one statement to set the criteria of data that can be coded in any step? : Sas programming


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More SAS Interview Questions

What is the use of %include statement?

0 Answers  


What is maximum number of rows and cols can be handled in SAS?

0 Answers   Signetsoft,


what are methods to identify duplicate observations?

5 Answers   HCL,


How many missing values are available? When might you use them?

1 Answers   Quintiles,


We have a string like this "kannafromsalembut" ,from this i want to get only "fromsal" (but one condition with out using substring function)here we can not use scan because in the given string there is no delimeter? so give ans without out using substring ?

5 Answers  






what are input dataset and output dataset options?

6 Answers   HCL,


name several ways to achieve efficiency in your program? : Sas programming

0 Answers  


how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but it workss if its vijaya raghava but not for raghava perumal.how to do this?

8 Answers   Wipro, Xansa,


Name validation tools used in SAS

0 Answers  


What are the functions used for character handling?

0 Answers  


data abc; input x y ; cards; 1 2 5 6 7 8 7 8 1 7 5 7 ; run; Proc Freq data=abc; tables x*y / chisq nopercent nocol norow PLCORR; RUN; If we run the code, we have Polychoric Correlation = 0.9054 in the last table. I want to extract this particular entry with the value. Means I will create one dataset in which this value will be stored/extracted. I need your help in coding this. Please help me out.

2 Answers  


calculate the sum of value using only DATA STEP. data count_; input year name $ value; cards; 2006 xxx 10 2007 yyy 12 2006 xxx 20 2008 yyy 15 2007 xxx 15 ; out put should be like this year name T_value ----------------------- 2006 xxx 30 2007 xxx 15 2007 yyy 12 2008 xxx 15

6 Answers  


Categories