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


How do you read in the variables that you need?

Answers were Sorted based on User's Feedback



How do you read in the variables that you need?..

Answer / neeraja

using keep(for selected variables).keep is a dataset
option.the statment keep is used to specify the number of
variables to be remained within a sas dataset or output.
syntax:keep <var list>
data emp;
keep name no;
input name$ no sal job$;
cards;
......
....

Is This Answer Correct ?    24 Yes 2 No

How do you read in the variables that you need?..

Answer / sheetal

data new (keep = name age sex);
set old;
run;

Is This Answer Correct ?    11 Yes 2 No

How do you read in the variables that you need?..

Answer / murray

I believe it is more efficient to use the KEEP statement on
the input data set, as only required variables are read into
the PDV. This is also true for the WHERE statement.

For small data sets the difference is of course negligible,
however it is always good to practice efficient programming.

Is This Answer Correct ?    9 Yes 0 No

How do you read in the variables that you need?..

Answer / kumaraswamy maduri

Use KEEP or DROP depending on the number of varibales you
require.

Keep: Out of 50 if you require to keep 20 variables it
better to use keep.
Drop: It meaning less to use KEEP when you want to use 35-
40 variables. Its better to drop the remaining variables.
Both mean same but efficient coding is always preffered.

Is This Answer Correct ?    7 Yes 0 No

How do you read in the variables that you need?..

Answer / chiranjeevi

using variable control options.
keep:It decides the no. of variable should remain within the
dataset.

syntax:keep<variablelist>;
example:
data code;
input name$ no sal;
keep name sal;
datalines;
a 32 3000
b 56 7000
c 12 7890
run;
proc print data=code;
run;

Is This Answer Correct ?    5 Yes 1 No

How do you read in the variables that you need?..

Answer / purushotham

I think KEEP option would be the better way to read the
variables that we need. But it's again depends upon how
many number of variables that you want to read from the
input dataset.

Let's say there are 30 variables in data set and you want
to read all the variables except 5 variables from the input
dataset. Then it's efficient to use DROP option to drop
those 5 variables instead of mentioning all 25 variables at
KEEP option.

Is This Answer Correct ?    1 Yes 0 No

How do you read in the variables that you need?..

Answer / aj

Using input statement with column/line pointers,informats and length specifiers.

Is This Answer Correct ?    0 Yes 0 No

How do you read in the variables that you need?..

Answer / hitesh

You can read in the variable with INPUT statement.
There are more than 1 ways use input statement.

eg:
input name$ no sal;

...OR you can read selected fields from byte positions at which they appear in the input file.

eg:
INPUT @1 NAME $20.
@21 No 3.
@24 Sal 7.;

Is This Answer Correct ?    0 Yes 1 No

How do you read in the variables that you need?..

Answer / siri

by using 'scan' statement.
scan <variable name>;

Is This Answer Correct ?    2 Yes 7 No

Post New Answer

More SAS Interview Questions

how do you validate tables abd reports?

2 Answers   Accenture, Quintiles,


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?

3 Answers  


How do you debug and test your SAS programs?

0 Answers   Quintiles,


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

0 Answers   Accenture, Quintiles,


What are MIs reports? what is the use of MIS reports and How can u generate the MIS reports in SAS? If any body know explain with the eg.

2 Answers   ABC, ASD Lab, CitiGroup,


in the flow of data step processing, what is the first action in a typical data step? : Sas programming

0 Answers  


What do the PUT and INPUT functions do?

0 Answers  


What are the ways in which macro variables can be created in sas programming?

0 Answers  


Describe a time when you were really stuck on a problem and how you solved it?

1 Answers  


"What is the difference between proc sort nodup and proc sort nodupkey?"

2 Answers  


how many data types in sas? : Sas-administrator

1 Answers  


How you can read the variables that you need?

0 Answers  


Categories