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

Difference b/n proc means and proc summary procedures?

Answer Posted / manojkumar.d1218

proc means and summary procedures are display the summary
statistics like n mean e.t.c...
And To display the summary statistics means procedure is the
is more efficiency because print option is default working
and display the summarized tables summary procedure is more efficient because noprint option is default working

proc means data=sashelp.class;
class name;
var age;
run;

/*for summary procedure */
proc summary data=sashelp.class;
class name;
var age;output out=summary_statistics;
run;









Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to include or exclude specific variables in a data set?

1162


How to sort in descending order?

1295


Do you know the features of sas?

1085


what is operational data and operational system? : Sas-di

1155


Describe the ways in which you can create macro variables? : sas-macro

1113


Which command is used to perform sorting in sas program?

1090


what are the best practices to process the large data sets in sas programming? : Sas-administrator

1070


Describe the function and untility of the most difficult SAS macro that you have written.

2167


Given an unsorted data set, how to read the last observation to a new data set?

1403


describe how to adjust the performance of data integrator? : Sas-di

1058


What is the basic syntax of a sas program?

1257


What system options would you use to help debug a macro? : sas-macro

1145


how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5

2152


Explain input and put function?

1183


what has been your most common programming mistake? : Sas programming

1183