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 diff. b/w proc means and proc summary?

Answer Posted / name is no need

differences:
1.The means procedure provides the simple statistics like
N,min,max,mean ans standard deviation.

The summary procedure provides the values _type_,_freq_ and
_stat_.

2.The means procedure gives the ouput/list report by
default.
The summary procedure provides a data set instead of
output/list report
3.proc means syntax:
proc means data=data set name;
class<varible declaration>;
var<variable declaration>;
run;
Proc summary syntax:
proc summary data=data set name;
output out=<new data set name>;
class<variable declaration>;
var<variable declaration>;
run;
4.if we use Noprint and output out=.. options in proc means
it should exactly equals to proc summary.

Is This Answer Correct ?    17 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the basic structure of the SAS base program?

1230


Explain why double trailing @@ is used in input statement?

1008


explain what is factor analysis? : Sas-administrator

1043


What is the length assigned to the target variable by the scan function?

1096


Tell e how how dealt with..

2169


How do you specify the number of iterations and specific condition within a single do loop?

1050


what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?

2125


How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?

2855


Explain proc univariate?

970


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

2482


if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...

1348


What is the differnce between SDTM 3.1.2 to 3.1.1 version

5028


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

1030


Which command is used to perform sorting in sas program?

987


what can you learn from the sas log when debugging? : Sas programming

1024