what are the validation tools in sas?
Answers were Sorted based on User's Feedback
Answer / jyotshna
for dataset
datasetname/debug
datasetname/stmtchk
for macros
options:
mprint mlogic symbolgen
Is This Answer Correct ? | 10 Yes | 0 No |
Answer / sirisha
format:for range checking
proc freq:used to check uniquenes
proc means:for statistical measurement,missing and non missingvalues.
macros: for reuse of the code
proc sort with nodupkey :to find duplicate observation
proc report:to create new variable etc.
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / aruna
Jyotshna, can u elaborate on datasetname/debug and
datasetname/stmtchk
Is This Answer Correct ? | 0 Yes | 0 No |
hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?
How do dates work in sas?
Do you need to combine data sets? How should you combine data sets– MERGE or SET statements in DATA steps,PROC APPEND,PROC SQL?
How do you generate random samples?
How is character variable converted into numeric variable and vice versa?
What are pdv and it functions?
Which date function advances a date, time or datetime value by a given interval?
why only we use SAS? their r many programmin language like SPSS, Oracle... Why SAS?
Do you know the features of sas?
Which command is used to save logs in the external file?
data task; input id date date9. visit; cards; 101 01jan2015 1 101 02jan2015 2 101 06jan2015 3 102 04jan2015 1 102 07jan2015 2 102 12jan2015 3 103 06jan2015 1 103 13jan2015 2 ; run; write a program to find out missing dates between visits by each subject.
What are the automatic variables for macro? : sas-macro