BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
variathu
Fluorite | Level 6

I have a dataset containing 50 data values and want to print only 4th to 10th observations. How can i do this using _N_?

 

Thank you

 

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Printing and _N_ are not really related concepts. The automatic variable _N_ can be used to keep track of how many times a data step has executed the implicit loop. Printing is normally done using a proc like PROC PRINT or PROC REPORT. You could make a subset of the data using a data step that references _N_ and print that. 

data to_print;
  set sashelp.class;
  if 4 <= _n_ <=10 ; 
run; 
proc print; 
run;

Since you just want one continuous range of observations you could use the FIRSTOBS= and OBS= dataset options to pick which observations you want to print, but that has nothing to do with the data step automatic variable _N_. 

proc print data=sashelp.class (firstobs=4 obs=10); 
run;

 

View solution in original post

3 REPLIES 3
Tom
Super User Tom
Super User

Printing and _N_ are not really related concepts. The automatic variable _N_ can be used to keep track of how many times a data step has executed the implicit loop. Printing is normally done using a proc like PROC PRINT or PROC REPORT. You could make a subset of the data using a data step that references _N_ and print that. 

data to_print;
  set sashelp.class;
  if 4 <= _n_ <=10 ; 
run; 
proc print; 
run;

Since you just want one continuous range of observations you could use the FIRSTOBS= and OBS= dataset options to pick which observations you want to print, but that has nothing to do with the data step automatic variable _N_. 

proc print data=sashelp.class (firstobs=4 obs=10); 
run;

 

novinosrin
Tourmaline | Level 20

data want;
do p=4 to 10;
set sashelp.class point=p;
output;
end;
stop;
run;

Patrick
Opal | Level 21

@variathu

proc print data=sashelp.class (firstobs=4 obs=10);
run;

 

Capture.JPG 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 6537 views
  • 6 likes
  • 4 in conversation