what is Enterprise Guide?what is the use of it?
Answers were Sorted based on User's Feedback
Answer / arun & g.n.rao
SAS ENTERPRISE GUDIDE IS A SEPERATE LICENSED TOOL FOR
PERFORMING ANALYSIS ON THE DATA WITH OUT WRITING ANY CODE.
IT IS JUST POINT AND CLICK TO PERFORM ALL THE TASKS LIKE
PRINT, GCHART, STATS ETC.
CURRENT VERISION FOR ENTERPRISE GUIDE IS 4.1
Is This Answer Correct ? | 12 Yes | 0 No |
Answer / chiranjeevi
SAS Enterprise Guide is designed for use by business
analysts, programmers and statisticians.
Enterprise Guide is a project-oriented Windows application
designed to enable quick access to much of the analytic
power of the SAS System for statisticians, business
analysts, and SAS programmers.
current version:Enterprise guide 4.1
Is This Answer Correct ? | 9 Yes | 1 No |
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
Have you ever used the SAS Debugger?
What is the difference between SAS Data step and SAS PROC SQL, and which is better?
What is the function of output statement in a SAS Program?
what is washout period?
What is the difference between SAS functions and procedures?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
what are input dataset and output dataset options?
how will you locate the sas platform applications? : Sas-bi
What are the statements in proc sql?
what is enterprise guide? What is the use of it? : Sas programming
hi guys ...i have one query... data abc; input s w k g o t a m; cards; 1 2 3 4 5 6 7 8 2 3 4 5 6 7 8 9 ; run; i want the output to be the sorted order(only variables).observations should not be changed..