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


I use NOCUM/NOPERCENT option in the tables statement like this

Proc freq data = deepak;
tables x y /nocum nopercent;
run;

Here I get nopercent and nocum in the output only for
variables x and y. How do i do it for all variables?

Deepak



I use NOCUM/NOPERCENT option in the tables statement like this Proc freq data = deepak; tables x..

Answer / deepak

use

tables _all_ /options;

if u want to print one way analysis of all variables with the specified options

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SAS Interview Questions

Can you continue to write code while the rest of the people on the floor where you work have a noisy party to which you were not invited?

2 Answers   Oracle,


how do you read binary data in sas?

3 Answers   Satyam,


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

0 Answers   Accenture, Quintiles,


SAS System ?

5 Answers  


How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?

0 Answers   Accenture,


How would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable?

1 Answers   Quintiles,


How do you put a giraffe into the refrigerator?

3 Answers   Oracle,


How can you put a "trace" in your program?

2 Answers   Quintiles,


What are the five ways to do a table lookup in sas? : sas-grid-administration

0 Answers  


Do you know the features of sas?

0 Answers  


how do i get last 10obs from a dataset when we don't know about the number of obsevations in that dataset?

7 Answers   TCS,


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

1 Answers  


Categories