what is option year cuttoff in sas
Answers were Sorted based on User's Feedback
Answer / prasad
by this option, we can set the year span like -
Options yearcutoff=2050
so it sets year from 2050 to 2149 .., not 2050 to 2049.
| Is This Answer Correct ? | 19 Yes | 3 No |
Answer / ankit
by this option we can set the year span like
Options yearcutoff=2050
so it sets year from 2050 to 2049 ..
| Is This Answer Correct ? | 2 Yes | 15 No |
What is run-group processing?
How are numeric and character missing values represented internally?
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
How do you debug and test your SAS programs? What can you learn from the SAS log when debugging? How do you test for missing values? How would you create multiple observations from a single observation? What are some good SAS programming practices for processing very large data sets? Briefly describe 5 ways to do a "table lookup" in SAS. Why is SAS considered self-documenting? Are you sensitive to code walk-throughs, peer review, or QC review? What other SAS features do you use for error trapping and data validation? How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?
Dear all, proc means data=dsn noprint completetypes; class trtmntgroup /preloadfmt; output out=tot n=n; format trtmntgroup trtf. ; by vstgrp descending severity; run; This is the code I used for AE table. I got the values without giving the variable ‘trtmntgroup(numeric)’ in var statement. And if I give the var statement for that variable i’m getting the same values.How is that possible? What is the difference between class and var statement? Could any one explain me how does proc means work at the back end. And what is the difference between _freq_ value and N value in proc means. Thanks and regards, Rajesh.
Do you use PROC REPORT or PROC TABULATE? Which do you prefer? Explain.
Where do you use proc means over proc freq?
what are the validation tools in sas?
Difference b/n proc means and proc summary procedures?
How could i automate the code in the scenario:Every month one new data set will be created for that perticular month transaction list.Now i would like to update the data in the source table by appending every month data automatically. jan---set jan; feb---set jan feb; mar---set jan mar;
Hi, If anyone has base SAS certification dumps, please share.
Give some examples where proc report’s defaults are different than proc print’s defaults?