what is TAB delimiter? explain about it? what will you do to
get TAB delimiter?
Answers were Sorted based on User's Feedback
Answer / sankar
TAB delimiter is seperate variables and observtons
it is use in infile statement as dlm='09'x.
proc import and proc export use a delimiter statement'
delimiter='09'x;
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / pnprasad
SAS reds the data from different files like .txt ASCII .xls
etc. For this use INFILE statement. While using this
statment we have to check the data formated in the related
file, i.e some may space, coma, tabs. So, if the file
contains TAB is the delimiter, we have to use
DLM=TAB / '09'X,(note: this is for horizantal TAB) to get
the observations in a defined format. (for Vertical TAb,
DLM='021'X.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / abhi
wn v r importing p\frm proc import frm xls.files
v use tab delimiters
it is used to set the spaces wn v r importing the xl sheet
| Is This Answer Correct ? | 3 Yes | 4 No |
what does the run statement do? : Sas programming
/* This is example of age caluculate wihtout to display perfect days and years in output window */ data age; retain dob "12jun2003"d now "24may2011"d; age1=now-dob; age=(now-dob)/365.25; years=int(age); days1=round((age-years)*365.25); months=month(now)-1; if days1 gt 30 and months in(12,10,8,6,4,2)then do; month1=days1/30.4375; month=int(days1/30.4375); if day(now)=1 then days=1; else days=round((month1-month)*30.4375)+1; drop days1 month1 month; end; else if days1 gt 30 and months in (1,3,5,7,9,11)then do; month1=days1/30.4375; month=int(days1/30.4375); if day(now)=1 then days=1; else days=round((month1-month) *30.4375); drop days1 month1 month; end; drop age age1; proc print data=age; format dob now date.; run;
wat is sas? is a package or programming language?
What is run-group processing?
What do you know about sas and what we do? : sas-grid-administration
Describe the types of SAS programming tasks that you performed like Tables? Listings? Graphics? Ad hoc reports? Other?
what is the usage for assigning error=1 in a dataset ?
what is SAS/Graph?
Explain what is SAS informats?
In the flow of DATA step processing, what is the first action in a typical DATA Step?
What are Dashboard reports?And significance of these in analysis?
What is _n_?