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

what is the difference between proc means and proc tabulate?

Answer Posted / vigneshwaran.s

Proc Means is used for Creating output with Mean,Std
Dev.,Minimum and maximum values for the Numeric variables
considered in Var Statement.

Proc tabulate is used for Creating tabular Report and it
does NOT deal with any statistics.

Is This Answer Correct ?    17 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

For what purposes have you used sas macros? : sas-macro

1047


For what purpose would you use the RETAIN statement?

1580


How do you debug and test your SAS programs?

1607


Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?

2448


explain what is factor analysis? : Sas-administrator

1171


Describe the function and utility of the most difficult SAS macro that you have written?

2625


what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming

1149


Explain the purpose of substr functions in sas programming.

1106


Which function is used to count the number of intervals between two sas dates?

1190


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

2174


What do the put and input function do?

1107


What is a method to debug and test your SAS program?

1434


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.

2244


List out some key concept of SAS

1207


Explain data_null_?

1106