Approximately what date is represented by SAS date value of
730
Answers were Sorted based on User's Feedback
Answer / mu mu
12/31/1961
data a;x=730;;proc print data=a; format x mmddyy10.;run;
| Is This Answer Correct ? | 29 Yes | 2 No |
Answer / sravan
data a;
x=730;
format x date9.;
run;
proc print data=a;run;
we get 31Dec1961
| Is This Answer Correct ? | 15 Yes | 2 No |
Answer / sheetal
In SAS Dates stored in numeric format, it starts from 1st
Jan 1960, and 1st jan 1960 consider as day # 0. So even
though 1960 was a leap year #days are 365 for year 1961 and
365 for 1961. Which means 365+365=730 nothing but last day
of 1961 - 31st Dec 1961.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / sriraghubabu
31dec1961
data a;
x=730;
proc print data=a;
format x date9.;
run;
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / pnprasad
In SAS Dates stored in numeric format, it starts from 1st
Jan 1960, so 730 means Jan 1962.
| Is This Answer Correct ? | 2 Yes | 7 No |
How the Excel file enter into the SAS environment without Code of Infile & Import procs,if i have no file Conversion?
Diff between proc sql merge and join?
Describe the types of SAS programming tasks that you performed like Tables? Listings? Graphics? Ad hoc reports? Other?
what is the primary data source for the wrs? : Sas-bi
Differentiate input and infile.
Which command is used to save logs in the external file?
You need to perform an analysis on a massive dataset by groups, but are unable to sort the data due to memory constraint. How would you accomplish the task?
Why and when do you use proc sql?
What are the different versions of sas that you have used until now? : sas-grid-administration
Give some examples where proc report’s defaults are different than proc print’s defaults?
How to create a permanent sas data set?
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?