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?
Answers were Sorted based on User's Feedback
Answer / vsrao
keep option
data ddd;
set sss(keep=a b c d e);
run;
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / 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 |
Answer / guest
My guess is also the keep statement to keep only 5
variables out of 100 variables..
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / purnimaprasad
Use keep statement to keep only 5 variables out of 100
variables
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / kishore kumar
If ur reading data from any dataset we will use keep option
like set data1(keep = 5 variables);,If ur using in any
procedure just with var statement.If u want to display to
have output with only 5variables out of 100 just use keep
option with data statement.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / soniya
in data set - use keep
in proc step- use var ,id statements
ex-
data a;
infile urfilename;
input score1-score100;
keep sore1-score5;
run;
input a;
input score1-scor100
run;
proc print data=a;
var score1-score5;
id score1-score5;
run;
observe id-in this statement nuber of obs not displed in
out put
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sudheer
var is the statement which will be used to get the variable
which are required in the output window, they are also
other answer for it when u r using proc guidelines.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / chiranjeevi
My guess is using data set option i.e keep
it is used for it decides the no. of variable should remain
with in the dataset
keep<variable list>
2)var statement
it is a keyword or statement used to specify the analysis
variables.The analysis variables are those,which is required
to be restructured.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the difference between SET and MERGE?
how to generate means for every subject;
Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks
How would you include common or reuse to be processed along with your statements?
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
sas implimented companies in hyderabad
what is option year cuttoff in sas
what is the difference between infile and input? : Sas-administrator
Name statements that function at both compile and execution time.
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
how to assign a macro value to a variable?
how to read character value without using substr function in sas ?