What is _n_?
Answers were Sorted based on User's Feedback
Answer / d.vijaya bhaskar
SAS variable to count the no of obs read.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / natraj boga
An internal SAS counter in the data step which contains the
current iteration number of the data step.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / varun kumar
_n_ is a automatic variable that can be used for processing.
It counts the number of times the data set begin to execute.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ashok kore
This is an automatic variable. It is used to count the
number of obs in dataset.Its added one for every iteration
of datastep.
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / chiranjeevi
The _n_ is a automatic variable which displays the line number.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / venkatesh.layam
while execution process automatic variable _n_ will be
created.it tells how many times data step has been
executed .
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / pricil kurian
Hi ravi..ur answer is correct. ONE QUERY...for the below
example to get third record consecuitvely we need to
if mod(_n_,3)= 0 ; is in't?
Eg. If we want to find every third record in a Dataset then
we can use the _n_ as follows
Data new-sas-data-set;
Set old;
if mod(_n_,3)= 0 then;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mani
The automatic
variable _n_ counts iterations of the DATA step.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mahesh
Its an automatic variable.it shows no. of iterations gone
through in datastep.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the difference between infile and input? : Sas-administrator
how the sas basic syntax style described? : Sas-administrator
1.How many ways are there to create variables? 2.What is CLM,how can we use it? 3.what are the advontages of data step? 4.what is the extension of editor window in SAS 9.1.3? 5.How do you copy a particular data set from one library to another? 6.what is the use of double option? 7.Advontages of Proc Report? 8.what is the basic use of where statement? 9.How do you terminate the statments in SAS Programming? 10.What is the difference between symput and symget? 11.How would a identify the local and global variable? can any one answer for the 4'th question
What can you learn from the SAS log when debugging?
for report generation which one you used proc report or data_null_?
3 Answers Accenture, Quintiles,
what do the mod and int function do? What do the pad and dim functions do? : Sas programming
what is prime numbers? how we can get plc write sas code?
Which function is used to count the number of intervals between two sas dates?
Name and describe three SAS functions that you have used, if any?
how are numeric and character missing values represented internally? : Sas programming
What is the role of administrative users? : sas-grid-administration
How would you determine how far down on a page you have printed in order to print out footnotes?