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 are scrubing procedures in SAS?
what is the frontend and backend of sas? Is sas is a progaming langauge or tool? on which langauge sas depends?
what is the primary data source for the wrs? : Sas-bi
Hi,by usining ptf how we have to combine (likr merge)10 datasets at a time in the oracle database(and write a macro code also)?Like this i have a douts a lot if you dont mind may please send one text mail for me(madhusudhanap16@gmail.com)?
Please write codes to merge two datasets and keep every record in the first dataset.
How can you put a "trace" in your program?
What is the difference between match merge and one to one merge?
What is the order of evaluation of the following operators + - * / ** () ???
What are some problems you might encounter in processing missing values? In Data steps? Arithmetic? Comparisons? Functions? Classifying data?
what are the different ways of merging two datasets.name atleast 4.
The below code we are using for creating more than one macro variables in proc sql using into clause. How we can use same code to create macro variables vara, varb, varc instead of var1, var2, var3.? proc sql noprint; select count(distinct(patient)) into :var1 - :var3 from dataset1 group by trtreg1c ; quit;
what are the sites did u refer for enquiries and doubts for SAS