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...

If you have a data set that contains 100 variables, but you
need only five of those, what is the code to force SAS to
use only those variable?

Answer Posted / ram pabba

It is true to use KEEP option on a dataset to only select
few variables from 100 variables.
We can use KEEP option either on set statement or data
step statement. If we use on SET statement then only the
five variables are created on pdv and only these variables
are sent to the output dataset. If we use KEEP option on
data step statement then all the variables are copied into
pdv and after any maniuplation only the selected variables
on data step statement are processed and sent to output
dataset.

data abc;
set xyz (keep= ab cd ef gh);
run;

data abc(keep= ab cd ef gh ij);
set xyz;
ij=ab+jk;
run;

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

In sas, what are the areas that you are most interested in? : sas-grid-administration

1022


What do you know about symput and symget?

1163


How long can a macro variable be? A token? : sas-macro

1155


What are common programming errors committed in sas

1097


how to read the variables in sas? : Sas-administrator

962


how do the in= variables improve the capability of a merge? : Sas programming

1391


what can you learn from the sas log when debugging? : Sas programming

1023


Give some ways by which you can define the variables to produce the summary report (using proc report)?

1032


Are you involved in writing the inferential analysis plan? Tables specifications?

3898


what is snowflake schema? : Sas-di

1145


How necessary is it to be creative in your work?

2424


Mention what is SAS data set?

1086


what is star schema? : Sas-di

1075


why a stop statement is needed for the point= option on a set statement?

997


How is character variable converted into numeric variable and vice versa?

1106