is there any differnce between proc means and proc summary?
Answers were Sorted based on User's Feedback
Answer / bharath
proc means:It will give descreptive statitstics.
By default it will give output in output window.
limited statistics will give like n,mean,median,min and max.
If we need additional statistics we need to add options.
Proc summary:same thing but it will not give output as
default.we need give an option print then only it will give
the output.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / saritha
proc means produce printed output.
where as proc summary will not produce any output but it
create dataset.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / kumaraswamy madoori
1) Proc Means generate a default output but Proc Summary
require Print option to generate output similar to proc
means.
2) To get similar outputs Proc summary should compulsory
have atleast one variable in VAR statement.
If you want a proof for the above please run the below code:
proc means data=sasuser.admit;
run;
proc summary data=sasuser.admit print;
run;
The outputs will be different.
| Is This Answer Correct ? | 2 Yes | 0 No |
THE PROC SUMMARY: IN THIS CASE THE PROC SUMMARY OMIT THE VAR AND OUT WINDOW,
IN THIS CASE WE CAN GET THE ONLY 'N' OBS.
THE PROC MEANS: WE CAN GET THE OUTPUT RESULT IN OUT WINDOW
AND IF WE WANT TO STATISTICAL INFORMATION AS PER YOUR WISE
N,MEAN,MAX,MIN,STD LIKE
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / naveen
Both having almost similar work but,,,,
Proc means having default print option,,,,,,,,,
And in proc summary does not have default print
option,,,,,,,,,,
| Is This Answer Correct ? | 0 Yes | 0 No |
describe about physical data integration? : Sas-di
Name the option to produce a frequency line items rather that a table.
How to write duplicate records into a separate dataset using sort?
What will calendar procedure do?
What happens in the following code, if u type 8 instead of *? proc sql noprint; create table abc as select 8 from lib.abc; quit;
What is LAG function?How is it used? can any one explain
3 Answers TRE, Verinon Technology Solutions,
Baseline definition in your study
3 Answers Accenture, Quintiles,
what is data access? : Sas-di
How do dates work in SAS data?
whenever we using the merging through data set merging ,we can get note in log like this "MERGE STATEMENT HAS MORE THAN ONE ONE DATASET BY REPEATED BY VAIABLES" but the output has come in good manner,whenever in in sql(full join) we can get cartion product.so How do overcome this problem in sql?
how to remove the duplicates by proc sql?
If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to do?