Vous êtes sur la page 1sur 31

Enterprise Guide 4.

Working With Wizards and Report

Copyright 2006, SAS Institute Inc. All rights reserved.

Agenda
SAS Enterprise Guide Overview

SAS Enterprise Guide : Querying & Reporting Tool

Copyright 2006, SAS Institute Inc. All rights reserved.

Then Powerful Tools


proc catmod order=data; weight wt; response / out=preds; model severity=trt hospital; run; quit; /* Keep just the predicted values, predictors, and response */ data pred2; set preds; if _type_='PROB'; keep severity trt hospital _pred_; run; /* Find predicted response level (level with highest predicted probability) in each sample. */ proc summary data=pred2 nway; class trt hospital; var _pred_; output out=predlvl (drop=_type_ _freq_) maxid(_pred_(severity))=predlvl; run;

SASThen vs. Now

Now Enterprise Solutions

/* Transpose the predicted values so that there is one observation per sample containing predicted values for each response level. */ proc transpose data=pred2 out=pred3 (drop=_name_); by trt hospital; id severity; var _pred_; run;

Copyright 2006, SAS Institute Inc. All rights reserved.

What is Enterprise Guide ?


SAS Enterprise Guide provides a SAS graphical interface that helps you exploit the power of SAS and publish dynamic results in a Microsoft Windows client application. The solution is the preferred SAS interface for business analysts, programmers and statisticians and a key application in SAS Business Intelligence offerings.

Copyright 2006, SAS Institute Inc. All rights reserved.

What is Enterprise Guide ?


Enterprise Guide is an easy-to-use Windows application that provides: 1. An intuitive visual interface 2. Transparent access to data 3. Access to the power of SAS 4. Easy exporting of data and results to other applications 5. Scripting and automation 6. Access to a programming interface

Copyright 2006, SAS Institute Inc. All rights reserved.

Key Benefits
Easy access to the right intelligence
Provide a self-service environment for analysts and statisticians. Provide easy access to data sources through a SAS graphical interface. Make reporting and analytics available to everyone.

Less repetitive work, more strategic work & greater visibility for your work Flexibility to adapt Liberate IT

Copyright 2006, SAS Institute Inc. All rights reserved.

1. Easy to use Interface

Copyright 2006, SAS Institute Inc. All rights reserved.

2. Access To the Power of SAS


Approximately 80 tasks (A task is a specific type of analysis or report that you can perform against data in a project). Summary Statistics Create Query Using Active Data Transpose Cluster Analysis Mean and Range Chart

Copyright 2006, SAS Institute Inc. All rights reserved.

Graphs Using SAS Enterprise Guide

Copyright 2006, SAS Institute Inc. All rights reserved.

Different types of wizard that helps in creating graphs in EG4.2


Bar Graph Wizard Line Graph Bar-Line Wizard Stack and grouped charts And many more graphs are there which help in making the report with more accuracy

Copyright 2006, SAS Institute Inc. All rights reserved.

SAS Stored Process


A stored process has the following characteristics:
is a SAS program that is hosted on a server and described by metadata can be executed by many of the client applications in the SAS9 Intelligence Platform is similar in concept to programs run by SAS/IntrNet, but more versatile because of the underlying metadata and security support

Because a stored process is a SAS program


it can access any SAS data source or external file. it can create new data sets, files, and report output in a variety of formats.

Copyright 2006, SAS Institute Inc. All rights reserved.

4. Formatting and Exporting Results


Results can be formatted as
plain text RTF PDF HTML XML

You can also


insert results in Microsoft Word and Microsoft PowerPoint e-mail or save results as HTML files and publish them on the Web publish the results to a channel.

Copyright 2006, SAS Institute Inc. All rights reserved.

5. Automating Projects and Process Flows


The SAS Enterprise Guide Scheduler provides a way to run process flows or update projects at a specified time.

Copyright 2006, SAS Institute Inc. All rights reserved.

Agenda
SAS Enterprise Guide Overview

SAS Enterprise Guide : Querying & Reporting Tool

Copyright 2006, SAS Institute Inc. All rights reserved.

Power of the Project


A project serves as a collection of data sources SAS programs and logs tasks and queries results parameters (macro variables) informational notes for documentation.
The user can control the contents, sequencing, and updating of a project.
Copyright 2006, SAS Institute Inc. All rights reserved.

15

For Data Management The Query Builder

Copyright 2006, SAS Institute Inc. All rights reserved.

Features of Query Builder


In the Query builder we can join more than two tables. And it has all type of joins like left join, right join and inner join. Query builder itself contains the filter condition tab that ease our work. It contains the sort tab using which we can sort our data.

Copyright 2006, SAS Institute Inc. All rights reserved.

Filters: Filter Wizard for Basic or Advanced

Copyright 2006, SAS Institute Inc. All rights reserved.

Computed Column Wizard


A wizard guides you through the process of creating the new column and assigning attributes such as the variable name (or alias) and format.

Copyright 2006, SAS Institute Inc. All rights reserved.

19

Grouping Data
Data can be grouped and summarized using the Select Data tab.

Copyright 2006, SAS Institute Inc. All rights reserved.

20

Joining Tables
Joining tables enables you to extract and simultaneously process data from more than one table.

Copyright 2006, SAS Institute Inc. All rights reserved.

21

For Reporting The Tasks


A task is a specific type of analysis, report, or data manipulation that you can perform against data in a project. A task is typically referenced by its description.
Copyright 2006, SAS Institute Inc. All rights reserved.

22

Summary Tables
The Summary Tables wizard or task can be used to generate a tabular summary report.

Copyright 2006, SAS Institute Inc. All rights reserved.

23

Working with Tasks

Task code, log, output data, and results are available for viewing and further analysis through tabs and menus.

Copyright 2006, SAS Institute Inc. All rights reserved.

24

Task Output Formats

By default, SAS Enterprise Guide produces task results in SAS Report format. However you can also choose to generate HTML, PDF, RTF, or text output.

Copyright 2006, SAS Institute Inc. All rights reserved.

25

Prompts

Prompts enable you to request input from the user when a task, query, or SAS program is run.

Internet Sales

Copyright 2006, SAS Institute Inc. All rights reserved.

26

The Style Manager


The Style Manager can be used to change the default style, and add, delete, or edit existing styles.

Copyright 2006, SAS Institute Inc. All rights reserved.

27

Conditional Processing
Conditional processing enables you to control whether specific steps within your project execute or not when you rerun a project, a process flow, or part of a process flow. Conditions can be set to specify whether to do any of the following: run tasks, queries, and programs e-mail results export results

Copyright 2006, SAS Institute Inc. All rights reserved.

28

Combining Reports
When you create results in SAS Report format, you can use those results to create a customized report that you can print, export, and share with other SAS applications. You can add multiple results to the report with text and images, and you can choose how to arrange them in the report.

Copyright 2006, SAS Institute Inc. All rights reserved.

29

Product Summary
SAS graphical interface Reporting, graphical and analytical tasks Data access and management OLAP access, visualization and manipulation Stored Processes Result distribution and Sharing Administration and security

Copyright 2006, SAS Institute Inc. All rights reserved.

THANKS! Any Questions?


http://support.sas.com

Copyright 2006, SAS Institute Inc. All rights reserved.

Vous aimerez peut-être aussi