Which date function advances a date, time or datetime value by a given interval?
No Answer is Posted For this Question
Be the First to Post Answer
How to limit decimal places for variable using proc means?
This entry was posted in General. Bookmark the permalink. Post a comment or leave
WHAT DIFFERRENCE DID YOU FIND AMONG VERSION 6 8 AND 9 OF SAS.
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.
Tell different ways to create Macrovarible?
3 Answers Accenture, PharmaNet i3,
What is the purpose of the trailing and How would you use them?
What is the sas data set? : sas-grid-administration
What are the implications?
if reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record
if a program has some 1000 or more line and how to know whether the syntax of the particular code is correct without checking it manually
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
What has been your most common programming mistake?