Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

You have a data set of 100 observations,how can you
restrict the output so that the output has only data from
row no. 10 to row no. 20

Answer Posted / jonathan o&

data Subset;
set whatever;
if _N_ not in (10-20) then delete;
run;

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What was the last computer book you purchased? Why?

2422


If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro

1120


Mention the validation tools used in SAS?

1231


describe about metadata object? : Sas-di

1127


Explain what is the use of proc gplot?

1249


how does sas handle missing values in assignment statements? : Sas programming

1072


Explain data_null_?

1110


What is the maximum length of the macro variable? : sas-macro

1157


What is the sas data set? : sas-grid-administration

1032


What are the differences between sum function and using “+” operator?

1159


for report generation which one you used proc report or data_null_?

7945


What is the role of administrative users? : sas-grid-administration

1137


What are the data types does SAS contain?

1170


In proc transpose and data step with arrays which one you pick?

3178


how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5

2154