ENTERPRISE GUIDE 4.3 ( SAS 9.2 TS2M3)

Size: px
Start display at page:

Download "ENTERPRISE GUIDE 4.3 ( SAS 9.2 TS2M3)"

Transcription

1 ENTERPRISE GUIDE 4.3 ( SAS 9.2 TS2M3) Implementing an Automated Analytic Process Edmonton SAS User Group May 11, 2011 John Kirtz Snowy Owl Software jk@snowyowlsoftware.com SAS is the registered trademark of SAS Institute Inc, North Carolina, USA 1

2 INTRODUCTION Presentation Objectives Encourage traditional SAS programmers to explore enterprise guide 4.3 Real Programmers use the SAS editor! Come over to the dark side, succumb to the power of 4.3 Why I actually started to use 4.3 Who is using EG 4.3? Who is aware of new features in EG 4.3? Demo EG can be used for more than developing SAS programs Why I should have started to use EG earlier No need to be a systems or SAS expert Daily / weekly data updates Analysis projects that need to be repeated 2

3 INTRODUCTION Presentation Outline Introduction 1. Review EG and SAS configuration used 2. Some features of Enterprise Guide 4.3 Come over to the dark side 3. Implement a sample automated analytic process using EG 4.3 Scenario Data processing ( hook in external SAS programs) Analysis / Report Output products ( EG Tasks no code) Product Delivery ( EG Report and objects no code) Automate (EG Schedule process no code) 4. Closing Remarks 3

4 SAS And Enterprise Guide Installation Software Used For Presentation Windows 7 Ultimate SAS 9.2 M3 Installation Foundation :Base / Graph / QC Enterprise Guide 4.3 default configuration installed with SAS Foundation Strictly using features easily available to SAS programmers No need for IT support No SAS BI Software No Stored Processes Many more capabilities with SAS BI installed Access to metadata Centralized data / projects Roles based processing Full use of Stored Processes 4

5 Some Features Of Enterprise Guide 4.3 Intellisense Come over to the dark side Very efficient for slow typist and bad speller now use much longer more descriptive datasets names Allows easy exploration of all possible choices New formats, informats, functions always being added New procs and procs I had forgotten about Hard to remember options and syntax for procs I was familiar with Examples Break old habits Found I always tended to use what I already knew Use favourite colours as opposed to checking available Allowed me to update my coding elements More powerful influence than it seems on the surface Just show what is available No attempt to detail how to access 5

6 Some Features Of Enterprise Guide 4.3 Integrated Syntax Help Come over to the dark side 6

7 Some Features Of Enterprise Guide 4.3 Syntax Suggestion and Auto-complete Come over to the dark side Available Functions and Context Based Parameter Help 7

8 Some Features Of Enterprise Guide 4.3 Come over to the dark side Available Libraries and Data Members Parentheses Matching 8

9 Some Features Of Enterprise Guide 4.3 Come over to the dark side Macro Variables and Macro Functions 9

10 Some Features Of Enterprise Guide 4.3 Come over to the dark side Colour Selection Format Selection 10

11 Some Features Of Enterprise Guide 4.3 Come over to the dark side Other Useful Features Finding Errors In Log Ctrl+E : next error Ctrl+Shift+E : previous error Analyse Program Execution Detailed Report Procedure and DATA steps File and data sources Process flow representation so-so results in this release Clean Up Program Formatting Problems see below 11

12 Some Features Of Enterprise Guide 4.3 Come over to the dark side Format Program Code (before) 12

13 Some Features Of Enterprise Guide 4.3 Come over to the dark side Format Program Code (after) 13

14 Scenario Snowy Owl Feed produces hog feed on five production lines at their Fort Saskatchewan Plant. Decided to test implementing NIR based QA/QC on one of the production lines Machine was installed on a line and set-up to test a sample every 3 minutes At the end of each hour the machine outputs a batch jdx file containing scan and constituent data The data in this file is to be used to generate distinct reports to NIR research and Product QA/QC dept If test is successful then NIR machines will be installed on all five lines. 14

15 Process Flow Product Sampled ( 3 min) QA/QC Data Marts Extract Report Data Const Listing Shew Hart EG Report QA/QC EG NIR Machine Batch JDX File ( 1 hour) Batch Dataset Upload Data Constituent Dataset Scan Dataset EG Analytic Tasks Scan Plots Scan CV EG Report NIR EG Import Data File Problem with Process Support Data Acquisition Analysis and Reports Report Distribution Exception Handling 15

16 SAS Tasks Create an Enterprise Guide project Develop SAS program to read JDX data into SAS datasets Batch, Constituent Concentration, Nir Scan data External program so it can be used elsewhere Develop SAS program to load batch datasets into historical SAS data marts Code separate as may switch to relational database later ( blob structure for NIR data) External program so it can be used elsewhere Develop SAS program to extract report data from historical data marts Code separate as may switch to relational database later External program so it can be used elsewhere Implement required analysis reports Use analytic EG tasks Implement required report distribution Use EG objects Separate task for each dept Test the process manually Automate the project Use project schedule object 16

17 Create Project : Add Autoexec Process 17

18 Data Acquisition : Data File Structure Jcamp-Dx Format ( see handout) Documented at ASCII Divided into sections 1. File Header contains batch-file info For each Sample there is a distinct section 2. Sample header Identify sample Scan parameters 3. Sample Constituent Data Predicted from scan Equations for constituents can be purchased or developed internally 4. NIR Scan Data value for each wavelength captured by the machine array of values defined by sample header 18

19 Data Acquisition : Information to be Captured 1. File Header ##TITLE= UltraHog1A ##JCAMP-DX= 4.24 ##DATA TYPE= LINK ##BLOCKS= 50 ##ORIGIN= Unity InfoStar Converter ##OWNER= FortSaskLineA3 ##DATE= 05/05/2011 ##TIME= 12:00:00 2. Sample Header ##TITLE= UltraHog1A ##JCAMP-DX= 4.24 ##DATA TYPE= NEAR INFRARED SPECTRUM ##ORIGIN= Unity InfoStar Converter ##OWNER= FortSaskLineA3 ##DATE= 05/05/2011 ##TIME= 12:03:00 ##SAMPLE DESCRIPTION=FortSaskLineA3 ##SPECTROMETER/DATA SYSTEM= UNITY ##XUNITS= NANOMETERS ##YUNITS= ABSORBANCE ##XFACTOR= 1 ##YFACTOR= ##FIRSTX= 680 ##LASTX= Sample Constituent ##CONCENTRATIONS= (NCU) (<Protein >, ,?) (<Starch >, ,?) (<Energy >, ,?) (<DEC >, ,?) (<Lysine >, ,?) (<TotalFiber >, ,?) 4. Scan NIR Data ##DELTAX= 1 ##XYDATA= (X++(Y..Y)) ##END= 19

20 Data Acquisition : Data Capture and Storage Develop programs Link in execution order 20

21 Analysis and Reports : Extract Report Data Develop program to extract required data from data marts Link to UpdateDatabase program to insure correct execution order 21

22 Analysis and Reports : Extract Report Data Execute HogFeedQAQC process flow to create analysis datasets ( needed to develop analytic tasks) 22

23 Analysis and Reports : Batch Constituent Listing Select ConstituentWideX dataset, click on Data List task 23

24 Analysis and Reports : Constituent Shewhart Charts Select ConstituentX dataset, click on Individual Measurements Chart task 24

25 Analysis and Reports : NIR Scan Plots Select NIRWAVELENGHTX dataset, click on Line Plot task 25

26 Analysis and Reports : NIR Wavelength Statistics Select NIRWAVELENGHTX dataset, click on Summary Table task 26

27 Analysis and Reports : Analysis Tasks Implemented 27

28 Analysis and Reports : QA/QC Dept Report Using Report Object 28

29 Analysis and Reports : NIR Dept Report Using Report Object 29

30 Report Distribution : Create PDF Version of QA/QC Report Use Export Option of QA/QC Report menu to create a PDF file 30

31 Report Distribution : Create PDF Version of NIR Report Use Export Option of NIR Report menu to create a PDF file 31

32 Report Distribution : Ready to Implement s 32

33 Report Distribution : Administration 33

34 Report Distribution : QA/QC Report Use Send To Option of QAQC Depart Report.pdf object Recipient as step in project 34

35 Project : Complete Use Export Option of NIR Report menu to create a PDF file 35

36 Project : Schedule 36

37 Closing Remarks Not Perfect (Yet)! SAS putting a lot of effort into EG still a few bugs but hot fixes are on the way. No task or method to shut down automated EG before it has completed the process no equivalent to ENDSAS statement need to set up a global status macro to conditionally execute steps no date for a fix for this An automated project that contains a conditional task may hang requires a Task Manager shutdown hot fix on the way in May (2011) Icon in process flow window indicates if there was an error but process cannot access this information SAS is aware of this and are planning to remedy it but no date available Problems with: DDE X statement and systask (possible permissions issue) SAS statements that do not work well in a SAS batch program Interactive environments such as the Report window SAS/AF Applications %WINDOW Statements DATA step debugger 37

38 Closing Remarks Not Perfect (Yet)! Add-ins Export to Excel works if you do not have Access to pc file formats Access to ODS Graphics Designer allow you run the designer from within an EG session Custom Add-ins can develop your own using Visual Basic or C# 38

39 MANAGING A PROCESS WITH E.G. 4.3 John Kirtz Snowy Owl Software jk@snowyowlsoftware.com The End! 39

What Is SAS? CHAPTER 1 Essential Concepts of Base SAS Software

What Is SAS? CHAPTER 1 Essential Concepts of Base SAS Software 3 CHAPTER 1 Essential Concepts of Base SAS Software What Is SAS? 3 Overview of Base SAS Software 4 Components of the SAS Language 4 SAS Files 4 SAS Data Sets 5 External Files 5 Database Management System

More information

Paper ###-YYYY. SAS Enterprise Guide: A Revolutionary Tool! Jennifer First, Systems Seminar Consultants, Madison, WI

Paper ###-YYYY. SAS Enterprise Guide: A Revolutionary Tool! Jennifer First, Systems Seminar Consultants, Madison, WI Paper ###-YYYY SAS Enterprise Guide: A Revolutionary Tool! Jennifer First, Systems Seminar Consultants, Madison, WI ABSTRACT Whether you are a novice or a pro with SAS, Enterprise Guide has something for

More information

ABSTRACT MORE THAN SYNTAX ORGANIZE YOUR WORK THE SAS ENTERPRISE GUIDE PROJECT. Paper 50-30

ABSTRACT MORE THAN SYNTAX ORGANIZE YOUR WORK THE SAS ENTERPRISE GUIDE PROJECT. Paper 50-30 Paper 50-30 The New World of SAS : Programming with SAS Enterprise Guide Chris Hemedinger, SAS Institute Inc., Cary, NC Stephen McDaniel, SAS Institute Inc., Cary, NC ABSTRACT SAS Enterprise Guide (with

More information

Improving Your Relationship with SAS Enterprise Guide Jennifer Bjurstrom, SAS Institute Inc.

Improving Your Relationship with SAS Enterprise Guide Jennifer Bjurstrom, SAS Institute Inc. ABSTRACT Paper BI06-2013 Improving Your Relationship with SAS Enterprise Guide Jennifer Bjurstrom, SAS Institute Inc. SAS Enterprise Guide has proven to be a very beneficial tool for both novice and experienced

More information

Patricia Guldin, Merck & Co., Inc., Kenilworth, NJ USA

Patricia Guldin, Merck & Co., Inc., Kenilworth, NJ USA SESUG 2015 Paper AD-35 Programming Compliance Made Easy with a Time Saving Toolbox Patricia Guldin, Merck & Co., Inc., Kenilworth, NJ USA ABSTRACT Programmers perform validation in accordance with established

More information

Platform Overview and What s New in SAS 9.4 Architecture

Platform Overview and What s New in SAS 9.4 Architecture Platform Overview and What s New in SAS 9.4 Architecture Platform Overview Metadata Server Cluster SAS Environment Manager How to Encrypt data and passwords 2 Platform Overview Metadata Server Cluster

More information

Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide

Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide Paper 809-2017 Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide ABSTRACT Marje Fecht, Prowerk Consulting Whether you have been programming in SAS for years, are new to

More information

Transitioning from Batch and Interactive SAS to SAS Enterprise Guide Brian Varney, Experis Business Analytics, Portage, MI

Transitioning from Batch and Interactive SAS to SAS Enterprise Guide Brian Varney, Experis Business Analytics, Portage, MI Paper BI-05-2013 Transitioning from Batch and Interactive SAS to SAS Enterprise Guide Brian Varney, Experis Business Analytics, Portage, MI ABSTRACT Although the need for access to data and analytical

More information

New (Useful & Cool) Features of Enterprise Guide 4.3

New (Useful & Cool) Features of Enterprise Guide 4.3 New (Useful & Cool) Features of Enterprise Guide 4.3 James Waite SAS Training Specialist (BI) Agenda Focus of Enhancements Programming Features Great references Demo Q & A Focus of Enhancements Some interface

More information

Construction IC User Guide

Construction IC User Guide Construction IC User Guide The complete source of project, company, market and theme information for the global construction industry clientservices.construction@globaldata.com https://construction.globaldata.com

More information

Techdata Solution. SAS Analytics (Clinical/Finance/Banking)

Techdata Solution. SAS Analytics (Clinical/Finance/Banking) +91-9702066624 Techdata Solution Training - Staffing - Consulting Mumbai & Pune SAS Analytics (Clinical/Finance/Banking) What is SAS SAS (pronounced "sass", originally Statistical Analysis System) is an

More information

Enterprise Miner Version 4.0. Changes and Enhancements

Enterprise Miner Version 4.0. Changes and Enhancements Enterprise Miner Version 4.0 Changes and Enhancements Table of Contents General Information.................................................................. 1 Upgrading Previous Version Enterprise Miner

More information

How Managers and Executives Can Leverage SAS Enterprise Guide

How Managers and Executives Can Leverage SAS Enterprise Guide Paper 8820-2016 How Managers and Executives Can Leverage SAS Enterprise Guide ABSTRACT Steven First and Jennifer First-Kluge, Systems Seminar Consultants, Inc. SAS Enterprise Guide is an extremely valuable

More information

Guide Users along Information Pathways and Surf through the Data

Guide Users along Information Pathways and Surf through the Data Guide Users along Information Pathways and Surf through the Data Stephen Overton, Overton Technologies, LLC, Raleigh, NC ABSTRACT Business information can be consumed many ways using the SAS Enterprise

More information

SAS Marketing Operations Management 6.0 R14 Update 2

SAS Marketing Operations Management 6.0 R14 Update 2 SAS Marketing Operations Management 6.0 R14 Update 2 What s New SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2013. SAS Marketing Operations Management

More information

This document will cover some of the key features available only in SMS Advanced, including:

This document will cover some of the key features available only in SMS Advanced, including: Key Differences between SMS Basic and SMS Advanced SMS Advanced includes all of the same functionality as the SMS Basic Software as well as adding numerous tools that provide management solutions for multiple

More information

Make SAS Enterprise Guide Your Own. John Ladds Statistics Canada Paper

Make SAS Enterprise Guide Your Own. John Ladds Statistics Canada Paper Make SAS Enterprise Guide Your Own John Ladds Statistics Canada Paper 1755-2014 Introduction Any tool that you use regularly you can customize it to suit your needs. With SAS Enterprise Guide, there are

More information

Risk Electrabel : exploiting SAP BW data for pricing and exposure reporting in Energy Trading

Risk Electrabel : exploiting SAP BW data for pricing and exposure reporting in Energy Trading Risk Management @ Electrabel : exploiting SAP BW data for pricing and exposure reporting in Energy Trading!Walter Waterschoot,!Risk System Expert, Electrabel!Paul Bruynseels,!Cross Application Project

More information

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide Multi-Sponsor Environment SAS Clinical Trial Data Transparency User Guide Version 6.0 01 December 2017 Contents Contents 1 Overview...1 2 Setting up Your Account...3 2.1 Completing the Initial Email and

More information

SAS 9.2 Enterprise Business Intelligence Audit and Performance Measurement for Windows Environments. Last Updated: May 23, 2012

SAS 9.2 Enterprise Business Intelligence Audit and Performance Measurement for Windows Environments. Last Updated: May 23, 2012 SAS 9.2 Enterprise Business Intelligence Audit and Performance Measurement for Windows Environments Last Updated: May 23, 2012 Copyright Notice The correct bibliographic citation for this manual is as

More information

QSpec Software Update Notification

QSpec Software Update Notification File Name : QSpec Update Notification.pdf Page: 1 of 19 Mastersizer 2000 version 5.10 Application Software for use with (English) Microsoft Windows NT and Windows 2000 Mastersizer 2000 (Part Number PSS0002/9)

More information

ICM+ Standard of Procedures

ICM+ Standard of Procedures ICM+ Standard of Procedures Moberg CNS monitors 23 April 2018 http://icmplus.neurosurg.cam.ac.uk ICM+ is a registered trademark. Copyright 2018 Cambridge Enterprise Limited All rights reserved 2 Table

More information

SAS Clinical Data Integration 2.4

SAS Clinical Data Integration 2.4 SAS Clinical Data Integration 2.4 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2013. SAS Clinical Data Integration 2.4: User's Guide.

More information

SAS Clinical Data Integration 2.6

SAS Clinical Data Integration 2.6 SAS Clinical Data Integration 2.6 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. SAS Clinical Data Integration 2.6: User's Guide.

More information

Enterprise Reporting Solution. Schedule and Delivery Getting Started Guide. Document Version 1.0

Enterprise Reporting Solution. Schedule and Delivery Getting Started Guide. Document Version 1.0 Enterprise Reporting Solution Schedule and Delivery Getting Started Guide Document Version 1.0 Last Updated 3.13.2006 Table of Contents Introduction... 3 Schedule a Job... 4 Name the schedule job... 5

More information

SSRS 2016 for WITS. Web Portal User Guide. Applies to: WITS Version 18.0+

SSRS 2016 for WITS. Web Portal User Guide. Applies to: WITS Version 18.0+ SSRS 2016 for WITS Web Portal User Guide Applies to: WITS Version 18.0+ Microsoft SQL Server Reporting Services (SSRS) 2016 Last Updated June 1, 2017 Microsoft SQL Server 2016 Report Builder 3.0 Version

More information

I KNOW HOW TO PROGRAM IN SAS HOW DO I NAVIGATE SAS ENTERPRISE GUIDE?

I KNOW HOW TO PROGRAM IN SAS HOW DO I NAVIGATE SAS ENTERPRISE GUIDE? Paper HOW-068 A SAS Programmer s Guide to the SAS Enterprise Guide Marje Fecht, Prowerk Consulting LLC, Cape Coral, FL Rupinder Dhillon, Dhillon Consulting Inc., Toronto, ON, Canada ABSTRACT You have been

More information

Data Management Project Using Software to Carry Out Data Analysis Tasks

Data Management Project Using Software to Carry Out Data Analysis Tasks Data Management Project Using Software to Carry Out Data Analysis Tasks This activity involves two parts: Part A deals with finding values for: Mean, Median, Mode, Range, Standard Deviation, Max and Min

More information

ABSTRACT Have you been programming in SAS for a while and just aren t sure how Enterprise Guide can help you? It isn t just a pretty face!

ABSTRACT Have you been programming in SAS for a while and just aren t sure how Enterprise Guide can help you? It isn t just a pretty face! SAS Enterprise Guide : It s for Programmers Too Marje Fecht, Prowerk Consulting LLC, Cape Coral, FL Rupinder Dhillon, Dhillon Consulting, Toronto, ON, Canada ABSTRACT Have you been programming in SAS for

More information

Data Warehousing. New Features in SAS/Warehouse Administrator Ken Wright, SAS Institute Inc., Cary, NC. Paper

Data Warehousing. New Features in SAS/Warehouse Administrator Ken Wright, SAS Institute Inc., Cary, NC. Paper Paper 114-25 New Features in SAS/Warehouse Administrator Ken Wright, SAS Institute Inc., Cary, NC ABSTRACT SAS/Warehouse Administrator 2.0 introduces several powerful new features to assist in your data

More information

MicroStrategy Desktop Quick Start Guide

MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop Quick Start Guide Version: 10.4 10.4, December 2017 Copyright 2017 by MicroStrategy Incorporated. All rights reserved. Trademark Information The following are either trademarks or

More information

Frequently Asked Questions and other helpful information

Frequently Asked Questions and other helpful information Frequently Asked Questions and other helpful information FAQ How do I chart? To create a chart, left click on the Chart toolbar button in the upper left corner of your CQG screen. A chart appears. In the

More information

Quality control database software. Try the new range of spectrophotometers from ColorLite.

Quality control database software. Try the new range of spectrophotometers from ColorLite. PC Software offers you the perfect solution for controling the quality of your product colours Quality control database software Innovative spectral Colour Metrology Made in Try the new range of spectrophotometers

More information

Crop Counting and Metrics Tutorial

Crop Counting and Metrics Tutorial Crop Counting and Metrics Tutorial The ENVI Crop Science platform contains remote sensing analytic tools for precision agriculture and agronomy. In this tutorial you will go through a typical workflow

More information

A Practical Introduction to SAS Data Integration Studio

A Practical Introduction to SAS Data Integration Studio ABSTRACT A Practical Introduction to SAS Data Integration Studio Erik Larsen, Independent Consultant, Charleston, SC Frank Ferriola, Financial Risk Group, Cary, NC A useful and often overlooked tool which

More information

Chapter 28 Saving and Printing Tables. Chapter Table of Contents SAVING AND PRINTING TABLES AS OUTPUT OBJECTS OUTPUT OBJECTS...

Chapter 28 Saving and Printing Tables. Chapter Table of Contents SAVING AND PRINTING TABLES AS OUTPUT OBJECTS OUTPUT OBJECTS... Chapter 28 Saving and Printing Tables Chapter Table of Contents SAVING AND PRINTING TABLES AS OUTPUT OBJECTS...418 OUTPUT OBJECTS...422 415 Part 2. Introduction 416 Chapter 28 Saving and Printing Tables

More information

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency Version 2.3 User Guide

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency Version 2.3 User Guide Multi-Sponsor Environment SAS Clinical Trial Data Transparency Version 2.3 User Guide Version 1.0 19 January 2018 Contents Contents 1 Overview...1 2 Setting Up Your Account...3 2.1 Completing the Initial

More information

OASUS Spring 2014 Questions and Answers

OASUS Spring 2014 Questions and Answers OASUS Spring 2014 Questions and Answers The following answers are provided to the benefit of the OASUS Users Group and are not meant to replace SAS Technical Support. Also, the Enterprise Guide project

More information

SAS 9.3 Intelligence Platform

SAS 9.3 Intelligence Platform SAS 9.3 Intelligence Platform Migration Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc 2011. SAS 9.3 Intelligence Platform: Migration Guide.

More information

SAS/Warehouse Administrator Usage and Enhancements Terry Lewis, SAS Institute Inc., Cary, NC

SAS/Warehouse Administrator Usage and Enhancements Terry Lewis, SAS Institute Inc., Cary, NC SAS/Warehouse Administrator Usage and Enhancements Terry Lewis, SAS Institute Inc., Cary, NC ABSTRACT SAS/Warehouse Administrator software makes it easier to build, maintain, and access data warehouses

More information

ABSTRACT Have you been programming in SAS for a while and just aren t sure how Enterprise Guide can help you? It isn t just a pretty face!

ABSTRACT Have you been programming in SAS for a while and just aren t sure how Enterprise Guide can help you? It isn t just a pretty face! Paper HW-02 SAS Enterprise Guide 4.3: Finally a Programmer s Tool Marje Fecht, Prowerk Consulting, Canada and USA Rupinder Dhillon, Dhillon Consulting, Toronto, ON, Canada ABSTRACT Have you been programming

More information

Document and Enhance Your SAS Code, Data Sets, and Catalogs with SAS Functions, Macros, and SAS Metadata. Louise S. Hadden. Abt Associates Inc.

Document and Enhance Your SAS Code, Data Sets, and Catalogs with SAS Functions, Macros, and SAS Metadata. Louise S. Hadden. Abt Associates Inc. Document and Enhance Your SAS Code, Data Sets, and Catalogs with SAS Functions, Macros, and SAS Metadata Louise S. Hadden Abt Associates Inc. Louise Hadden has been using and loving SAS since the days

More information

BI-09 Using Enterprise Guide Effectively Tom Miron, Systems Seminar Consultants, Madison, WI

BI-09 Using Enterprise Guide Effectively Tom Miron, Systems Seminar Consultants, Madison, WI Paper BI09-2012 BI-09 Using Enterprise Guide Effectively Tom Miron, Systems Seminar Consultants, Madison, WI ABSTRACT Enterprise Guide is not just a fancy program editor! EG offers a whole new window onto

More information

Real Time Clinical Trial Oversight with SAS

Real Time Clinical Trial Oversight with SAS PharmaSUG 2017 - Paper DA01 Real Time Clinical Trial Oversight with SAS Ashok Gunuganti, Trevena ABSTRACT A clinical trial is an expensive and complex undertaking with multiple teams working together to

More information

APPENDIX 4 Migrating from QMF to SAS/ ASSIST Software. Each of these steps can be executed independently.

APPENDIX 4 Migrating from QMF to SAS/ ASSIST Software. Each of these steps can be executed independently. 255 APPENDIX 4 Migrating from QMF to SAS/ ASSIST Software Introduction 255 Generating a QMF Export Procedure 255 Exporting Queries from QMF 257 Importing QMF Queries into Query and Reporting 257 Alternate

More information

What s New in Enterprise Jeff Simpson Sr. Systems Engineer

What s New in Enterprise Jeff Simpson Sr. Systems Engineer What s New in Enterprise 7.1.3 Jeff Simpson Sr. Systems Engineer SAS Enterprise Guide 7.13 The new DATA Step Debugger is a tool that enables you to find logic errors in a DATA step program. With the DATA

More information

HOSTED CONTACT CENTRE

HOSTED CONTACT CENTRE ---------------------------------------------------------------------------- ------ HOSTED CONTACT CENTRE ANALYTICS GUIDE Version 9.4 Revision 1.0 Confidentiality and Proprietary Statement This document

More information

SAS Energy Forecasting 3.1 Installation Guide

SAS Energy Forecasting 3.1 Installation Guide SAS Energy Forecasting 3.1 Installation Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2013. SAS Document Title, Cary, NC: SAS Institute Inc. SAS Document Title

More information

IEC COLLABORATION PLATFORM

IEC COLLABORATION PLATFORM IEC COLLABORATION PLATFORM User guide Abstract A step by step guide to using the new IEC Collaboration Platform Version 1 (2018-05-03) For support contact helpdesk@iec.ch Table of Contents IEC SSO Login...

More information

Based on the Property Type you have selected, you can choose different search options:

Based on the Property Type you have selected, you can choose different search options: Matrix 6.0 The Search Tab The search tab contains links to each search type provided by Matrix. There are six different property type searches. All search types equate to their respective contracts and

More information

Data Warehousing on a Shoestring Rick Nicola, SPS Software Services Inc., Canton, OH

Data Warehousing on a Shoestring Rick Nicola, SPS Software Services Inc., Canton, OH Paper 118 Data Warehousing on a Shoestring Rick Nicola, SPS Software Services Inc., Canton, OH Abstract: Perhaps the largest stumbling block in developing a data warehouse using SAS (or any other) products

More information

Excel Microsoft Query User Guide Pdf 2007 Advanced Macros Quick

Excel Microsoft Query User Guide Pdf 2007 Advanced Macros Quick Excel Microsoft Query User Guide Pdf 2007 Advanced Macros Quick This template guide is an overview of how to use and customize Microsoft Template design errors in Microsoft Word, Excel, PowerPoint templates,

More information

Paper BI SAS Enterprise Guide System Design. Jennifer First-Kluge and Steven First, Systems Seminar Consultants, Inc.

Paper BI SAS Enterprise Guide System Design. Jennifer First-Kluge and Steven First, Systems Seminar Consultants, Inc. ABSTRACT Paper BI-10-2015 SAS Enterprise Guide System Design Jennifer First-Kluge and Steven First, Systems Seminar Consultants, Inc. A good system should embody the following characteristics: It is planned,

More information

ICM+ Standard of Procedures

ICM+ Standard of Procedures ICM+ Standard of Procedures GE Carescape monitors 18 April 2017 http://www.neurosurg.cam.ac.uk/icmplus ICM+ is a registered trademark. Copyright 2017 Cambridge Enterprise Limited All rights reserved 2

More information

Switching to Sheets from Microsoft Excel Learning Center gsuite.google.com/learning-center

Switching to Sheets from Microsoft Excel Learning Center gsuite.google.com/learning-center Switching to Sheets from Microsoft Excel 2010 Learning Center gsuite.google.com/learning-center Welcome to Sheets Now that you've switched from Microsoft Excel to G Suite, learn how to use Google Sheets

More information

Moving Data and Results Between SAS and Excel. Harry Droogendyk Stratia Consulting Inc.

Moving Data and Results Between SAS and Excel. Harry Droogendyk Stratia Consulting Inc. Moving Data and Results Between SAS and Excel Harry Droogendyk Stratia Consulting Inc. Introduction SAS can read ( and write ) anything Introduction In the end users want EVERYTHING in. Introduction SAS

More information

Smart-X Software Solutions SecReport Enterprise User Guide

Smart-X Software Solutions SecReport Enterprise User Guide Smart-X Software Solutions SecReport Enterprise User Guide Table of Contents: WELCOME 4 FEATURES AND CAPABILITIES 5 CONTENTS AND REQUIREMENTS 7 CONTENTS 7 REQUIREMENTS 8 LICENSING AND INSTALLATION 10 EVALUATION

More information

Using Metadata Queries To Build Row-Level Audit Reports in SAS Visual Analytics

Using Metadata Queries To Build Row-Level Audit Reports in SAS Visual Analytics SAS6660-2016 Using Metadata Queries To Build Row-Level Audit Reports in SAS Visual Analytics ABSTRACT Brandon Kirk and Jason Shoffner, SAS Institute Inc., Cary, NC Sensitive data requires elevated security

More information

Exporting Variable Labels as Column Headers in Excel using SAS Chaitanya Chowdagam, MaxisIT Inc., Metuchen, NJ

Exporting Variable Labels as Column Headers in Excel using SAS Chaitanya Chowdagam, MaxisIT Inc., Metuchen, NJ Paper 74924-2011 Exporting Variable Labels as Column Headers in Excel using SAS Chaitanya Chowdagam, MaxisIT Inc., Metuchen, NJ ABSTRACT Excel output is the desired format for most of the ad-hoc reports

More information

Enterprise Client Software for the Windows Platform

Enterprise Client Software for the Windows Platform Paper 154 Enterprise Client Software for the Windows Platform Gail Kramer, SAS Institute Inc., Cary, NC Carol Rigsbee, SAS Institute Inc., Cary, NC John Toebes, SAS Institute Inc., Cary, NC Jeff Polzin,

More information

Seized Drugs Operational Guidelines for the Shimadzu UV/VIS Comparative and Analytical Division

Seized Drugs Operational Guidelines for the Shimadzu UV/VIS Comparative and Analytical Division Operational Guidelines for the Shimadzu UV/VIS Comparative and Analytical Division SHIMADZU ULTRAVIOLET/VISIBLE SPECTROPHOTOMETER (UV/VIS) Instrument Shimadzu UV-2401 UV/VIS Spectrophotometer (Serial Number

More information

SAP Roambi SAP Roambi Cloud SAP BusinessObjects Enterprise Plugin Guide

SAP Roambi SAP Roambi Cloud SAP BusinessObjects Enterprise Plugin Guide SAP Roambi 2017-10-31 SAP Roambi Cloud SAP BusinessObjects Enterprise Plugin Guide 1 Table of Contents I. Overview Introduction How it Works II. Setup Requirements Roambi Requirements Created a Roambi

More information

SAS ENTERPRISE GUIDE WHAT LIES BEHIND ALL THESE WINDOWS FOR PROGRAMMERS. Copyr i g ht 2013, SAS Ins titut e Inc. All rights res er ve d.

SAS ENTERPRISE GUIDE WHAT LIES BEHIND ALL THESE WINDOWS FOR PROGRAMMERS. Copyr i g ht 2013, SAS Ins titut e Inc. All rights res er ve d. SAS ENTERPRISE GUIDE WHAT LIES BEHIND ALL THESE WINDOWS FOR PROGRAMMERS ENTERPRISE GUIDE ORGANIZES YOUR WORK Me? Unorganized? The project is a container of everything you need to accomplish a task: Data

More information

SAS Display Manager Windows. For Windows

SAS Display Manager Windows. For Windows SAS Display Manager Windows For Windows Computers with SAS software SSCC Windows Terminal Servers (Winstat) Linux Servers (linstat) Lab computers DoIT Info Labs (as of June 2014) In all Labs with Windows

More information

Create Open Data with Google Analytics. Open Data Day 2019

Create Open Data with Google Analytics. Open Data Day 2019 Create Open Data with Google Analytics Open Data Day 2019 3/2/2019 Introduction 2 Grow with Google Edmonton is experiencing transformative growth, and we believe the tools and resources Grow with Google

More information

2997 Yarmouth Greenway Drive, Madison, WI Phone: (608) Web:

2997 Yarmouth Greenway Drive, Madison, WI Phone: (608) Web: Getting the Most Out of SAS Enterprise Guide 2997 Yarmouth Greenway Drive, Madison, WI 53711 Phone: (608) 278-9964 Web: www.sys-seminar.com 1 Questions, Comments Technical Difficulties: Call 1-800-263-6317

More information

Oracle. Risk Management Cloud Creating Analytics and Reports. Release 13 (update 17D)

Oracle. Risk Management Cloud Creating Analytics and Reports. Release 13 (update 17D) Oracle Risk Management Cloud Release 13 (update 17D) Release 13 (update 17D) Part Number E89287-01 Copyright 2011-2017, Oracle and/or its affiliates. All rights reserved. Author: David Christie This software

More information

MALDI Software Users Guide (simplified version)

MALDI Software Users Guide (simplified version) MALDI Software Users Guide (simplified version) Central Analytical Lab Ekeley E266 The Acquisition program is called Voyager Control Panel. Once you shoot your sample and determine it looks good, you transfer

More information

It s not the Yellow Brick Road but the SAS PC FILES SERVER will take you Down the LIBNAME PATH= to Using the 64-Bit Excel Workbooks.

It s not the Yellow Brick Road but the SAS PC FILES SERVER will take you Down the LIBNAME PATH= to Using the 64-Bit Excel Workbooks. Paper FP_82 It s not the Yellow Brick Road but the SAS PC FILES SERVER will take you Down the LIBNAME PATH= to Using the 64-Bit Excel Workbooks. ABSTRACT William E Benjamin Jr, Owl Computer Consultancy,

More information

Handbook for the Process Discovery

Handbook for the Process Discovery Interstage Business Process Manager Analytics V12.1 Handbook for the Process Discovery Solaris J2S0-0435-01ENZ0(00) April 2013 About this Manual This section explains summary, chapter overview, abbreviations,

More information

Policy Manager in Compliance 360 Version 2018

Policy Manager in Compliance 360 Version 2018 Policy Manager in Compliance 360 Version 2018 Policy Manager Overview 3 Create a Policy 4 Relate a Policy to Other Policies, Departments, and Incidents 8 Edit a Policy 10 Edit a Policy by Using the Edit

More information

SAS Model Manager 2.2. Tutorials

SAS Model Manager 2.2. Tutorials SAS Model Manager 2.2 Tutorials The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. SAS Model Manager 2.2: Tutorials. Cary, NC: SAS Institute Inc. SAS Model Manager

More information

Index COPYRIGHTED MATERIAL. Symbols and Numerics

Index COPYRIGHTED MATERIAL. Symbols and Numerics Symbols and Numerics & (ampersand), 117 %LET statement, 329 * (multiplier symbol), 58 %WINDOW statement, 334 3-D effect for graph, 152 A Access (Microsoft) data management, 82 83 importing database from,

More information

LEGENDplex Data Analysis Software Version 8 User Guide

LEGENDplex Data Analysis Software Version 8 User Guide LEGENDplex Data Analysis Software Version 8 User Guide Introduction Welcome to the user s guide for Version 8 of the LEGENDplex data analysis software for Windows based computers 1. This tutorial will

More information

WPS Workbench. user guide. "To help guide you through using the WPS user interface (Workbench) to create, edit and run programs"

WPS Workbench. user guide. To help guide you through using the WPS user interface (Workbench) to create, edit and run programs WPS Workbench user guide "To help guide you through using the WPS user interface (Workbench) to create, edit and run programs" Version: 3.1.7 Copyright 2002-2018 World Programming Limited www.worldprogramming.com

More information

Vendor: IBM. Exam Code: C Exam Name: IBM Cognos 10 BI Author. Version: Demo

Vendor: IBM. Exam Code: C Exam Name: IBM Cognos 10 BI Author. Version: Demo Vendor: IBM Exam Code: C2020-612 Exam Name: IBM Cognos 10 BI Author Version: Demo Question No : 1 In Report Studio, an author creates a list report containing columns for Staff Name, Order number, and

More information

alteryx training courses

alteryx training courses alteryx training courses alteryx designer 2 day course This course covers Alteryx Designer for new and intermediate Alteryx users. It introduces the User Interface and works through core Alteryx capability,

More information

What s New in SAS Studio?

What s New in SAS Studio? ABSTRACT Paper SAS1832-2015 What s New in SAS Studio? Mike Porter, Amy Peters, and Michael Monaco, SAS Institute Inc., Cary, NC If you have not had a chance to explore SAS Studio yet, or if you re anxious

More information

SAS 9.2 Enterprise Business Intelligence Audit and Performance Measurement for UNIX Environments. Last Updated: May 23, 2012

SAS 9.2 Enterprise Business Intelligence Audit and Performance Measurement for UNIX Environments. Last Updated: May 23, 2012 SAS 9.2 Enterprise Business Intelligence Audit and Performance Measurement for UNIX Environments Last Updated: May 23, 2012 Copyright Notice The correct bibliographic citation for this manual is as follows:

More information

SAS Enterprise Guide Moving from 4.1 to 4.3 What s New and Different?

SAS Enterprise Guide Moving from 4.1 to 4.3 What s New and Different? SAS Enterprise Guide Moving from 4.1 to 4.3 What s New and Different? Chris Hemedinger, SAS >12 years of SAS Enterprise Guide Release Team founded SAS Enterprise Guide 1.0 SAS Enterprise Guide 1.1 SAS

More information

SAS University Edition: Installation Guide for Windows

SAS University Edition: Installation Guide for Windows SAS University Edition: Installation Guide for Windows i 17 June 2014 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. SAS University Edition: Installation Guide

More information

ICM+ Standard of Procedures

ICM+ Standard of Procedures ICM+ Standard of Procedures Masimo ROOT monitor 20 December 2016 Dr Peter Smielewski (ps10011@cam.ac.uk) ICM+ is a registered trademark. Copyright 2016 Cambridge Enterprise Limited All rights reserved

More information

Using SAS Enterprise Guide with the WIK

Using SAS Enterprise Guide with the WIK Using SAS Enterprise Guide with the WIK Philip Mason, Wood Street Consultants Ltd, United Kingdom ABSTRACT Enterprise Guide provides an easy to use interface to SAS software for users to create reports

More information

Predictive Modeling with SAS Enterprise Miner

Predictive Modeling with SAS Enterprise Miner Predictive Modeling with SAS Enterprise Miner Practical Solutions for Business Applications Third Edition Kattamuri S. Sarma, PhD Solutions to Exercises sas.com/books This set of Solutions to Exercises

More information

Adobe Marketing Cloud Report Builder

Adobe Marketing Cloud Report Builder Adobe Marketing Cloud Report Builder Contents Adobe Report Builder Help...6 What's New in Report Builder...7 Report Builder 5.6...7 Report Builder 5.5...7 Report Builder 5.4...7 Report Builder 5.3...8

More information

Boot Camp - Letters. Betsy Hopkins 12 January 2017

Boot Camp - Letters. Betsy Hopkins 12 January 2017 Boot Camp - Letters Betsy Hopkins 12 January 2017 Letters Letters o o o Letters are used throughout the system for communicating assignments, inquiries, tasks, etc. Can be used for o Submission-related

More information

Approaches for Upgrading to SAS 9.2. CHAPTER 1 Overview of Migrating Content to SAS 9.2

Approaches for Upgrading to SAS 9.2. CHAPTER 1 Overview of Migrating Content to SAS 9.2 1 CHAPTER 1 Overview of Migrating Content to SAS 9.2 Approaches for Upgrading to SAS 9.2 1 What is Promotion? 2 Promotion Tools 2 What Can Be Promoted? 2 Special Considerations for Promoting Metadata From

More information

SAS IT Resource Management 3.8: Reporting Guide

SAS IT Resource Management 3.8: Reporting Guide SAS IT Resource Management 3.8: Reporting Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2017. SAS IT Resource Management 3.8: Reporting Guide.

More information

Confluence User Training Guide

Confluence User Training Guide Confluence User Training Guide Below is a short overview of wikis and Confluence and a basic user training guide for completing common tasks in Confluence. This document outlines the basic features that

More information

Release Notes Life Technologies Attune NxT Software v2.3

Release Notes Life Technologies Attune NxT Software v2.3 Release Notes Life Technologies Attune NxT Software v2.3 In the following pages you will find instructions describing: New software features Known software/system issues with troubleshooting guidance Software

More information

Power BI 1 - Create a dashboard on powerbi.com... 1 Power BI 2 - Model Data with the Power BI Desktop... 1

Power BI 1 - Create a dashboard on powerbi.com... 1 Power BI 2 - Model Data with the Power BI Desktop... 1 Our course outlines are 1 and 2 hour sessions (all courses 1 hour unless stated) that are designed to be delivered presentation style with an instructor guiding attendees through scenario based examples

More information

General Guidelines: SAS Analyst

General Guidelines: SAS Analyst General Guidelines: SAS Analyst The Analyst application is a data analysis tool in SAS for Windows (version 7 and later) that provides easy access to basic statistical analyses using a point-and-click

More information

nfax 5.0 OceanFax User s Guide

nfax 5.0 OceanFax User s Guide nfax 5.0 OceanFax User s Guide 1 Table of Contents 1. FAXVIEW GUIDE... 1 1.1 FaxView Login and Exit... 1 1.1.1 FaxView Client Login... 1 1.1.2 WebFax Client... 2 1.1.3 FaxView Exit... 3 2.2 FaxView Over

More information

The NESTED Procedure (Chapter)

The NESTED Procedure (Chapter) SAS/STAT 9.3 User s Guide The NESTED Procedure (Chapter) SAS Documentation This document is an individual chapter from SAS/STAT 9.3 User s Guide. The correct bibliographic citation for the complete manual

More information

SESUG 2014 IT-82 SAS-Enterprise Guide for Institutional Research and Other Data Scientists Claudia W. McCann, East Carolina University.

SESUG 2014 IT-82 SAS-Enterprise Guide for Institutional Research and Other Data Scientists Claudia W. McCann, East Carolina University. Abstract Data requests can range from on-the-fly, need it yesterday, to extended projects taking several weeks or months to complete. Often institutional researchers and other data scientists are juggling

More information

Tutorial: set up of measurement recipe with database

Tutorial: set up of measurement recipe with database Tutorial: set up of measurement recipe with database This tutorial explains 1. how to create a recipe to perform repeated measurements at a given place on the wafer 2. how to make a data analysis routine

More information

Electronic Committees (ecommittees) Frequently Asked Questions v1.0

Electronic Committees (ecommittees) Frequently Asked Questions v1.0 3 Electronic Committees (ecommittees) Frequently Asked Questions v1.0 SABS 2012-12-06 Table of Contents 1 Contents 1 Login and access... 3 1.1 How to access the ecommittee workspace... 3 1.1.1 Via the

More information

REPORT DOCUMENTATION PAGE

REPORT DOCUMENTATION PAGE REPORT DOCUMENTATION PAGE Form Approved OMB No. 0704-0188 Public reporting burden for this collection of information is estimated to average 1 hour per response, including the time for reviewing instructions,

More information

A Long-Time SAS Programmer Learns New Tricks. DASUG Presentation by Lisa Horwitz, October 20, 2017

A Long-Time SAS Programmer Learns New Tricks. DASUG Presentation by Lisa Horwitz, October 20, 2017 A Long-Time SAS Programmer Learns New Tricks DASUG Presentation by Lisa Horwitz, October 20, 2017 Presenter Lisa Horwitz, SAS Lisa Horwitz is Partner Program Manager in the Global Alliances and Channels

More information

The following pages provide a step-by-step introduction to using the CEDEN website for data submission and data access.

The following pages provide a step-by-step introduction to using the CEDEN website for data submission and data access. The following pages provide a step-by-step introduction to using the CEDEN website for data submission and data access. Additional information is available as Adobe PDF formatted, printable documents.

More information