From An Introduction to SAS University Edition. Full book available for purchase here.

Size: px
Start display at page:

Download "From An Introduction to SAS University Edition. Full book available for purchase here."

Transcription

1 From An Introduction to SAS University Edition. Full book available for purchase here. Contents List of Programs... xi About This Book... xvii About the Author... xxi Acknowledgments... xxiii Part 1: Getting Acquainted with the SAS Studio Environment... 1 Chapter 1: Introduction to the SAS University Edition... 3 Introduction: An Overview of SAS and the SAS University Edition... 3 Obtaining Your Free Copy of SAS... 4 Installing the SAS University Edition... 6 Conclusion Chapter 2: The SAS Studio Interface Introduction Exploring the Built-In Data Sets Sorting Your Data Switching Between Column Names and Column Labels Resizing Tables Creating Filters Conclusion Chapter 3: Importing Your Own Data Introduction Exploring the Utilities Tab Importing Data from an Excel Workbook Listing the SAS Data Set Importing an Excel Workbook with Invalid SAS Variable Names Importing an Excel Workbook That Does Not Have Variable Names... 34

2 iv Importing Data from a CSV File Conclusion Chapter 4: Creating Reports Introduction Using the List Data Task to Create a Simple Listing Filtering Data Sorting Data Outputting PDF and RTF Files Joining Tables (Using the Query Window) Conclusion Chapter 5: Summarizing Data Using SAS Studio Introduction Summarizing Numeric Variables Adding a Classification Variable Summarizing Character Variables Conclusion Chapter 6: Graphing Data Introduction Creating a Frequency Bar Chart Creating a Bar Chart with a Response Variable Adding a Group Variable Creating a Pie Chart Creating a Scatter Plot Conclusion Part 2: Learning How to Write Your Own SAS Programs.. 89 Chapter 7: An Introduction to SAS Programming SAS as a Programming Language The SAS Studio Programming Windows Your First SAS Program How the DATA Step Works How the INPUT Statement Works Reading Delimited Data How Procedures (PROCS) Work

3 v How SAS Works: A Look Inside the Black Box Conclusion Chapter 8: Reading Data from External Files Introduction Reading Data Values Separated by Delimiters Reading Comma-Separated Values Files Reading Data Separated by Other Delimiters Reading Data in Fixed Columns Column Input Formatted Input Reading Excel Files Reading from an Excel Workbook where Column Headings Are Invalid SAS Variable Names Conclusion Problems Chapter 9: Reading and Writing SAS Data Sets What's a SAS Data Set? Temporary versus Permanent SAS Data Sets Shared Folders: Communicating between Your Virtual Computer and Your Real Computer Creating a Shared Folder and Reading Data from It Creating a Permanent SAS Data Set Reading from a Permanent SAS Data Set Conclusion Problems Chapter 10: Creating Formats and Labels What Is a SAS Format and Why Is It Useful? Using SAS Built-in Formats More Examples to Demonstrate How to Write Formats Describing the Difference between a FORMAT Statement in a Procedure and a FORMAT Statement in a DATA Step Making Your Formats Permanent Creating Variable Labels Conclusion Problems

4 vi Chapter 11: Performing Conditional Processing Introduction Grouping Age Using Conditional Processing Using Conditional Logic to Check for Data Errors Describing the IN Operator Using Boolean Logic (AND, OR, and NOT Operators) A Special Caution When Using Multiple OR Operators Conclusion Problems Chapter 12: Performing Iterative Processing: Looping Introduction Demonstrating a DO Group Describing a DO Loop Using a DO Loop to Graph an Equation DO Loops with Character Values Leaving a Loop Based on Conditions (DO WHILE and DO UNTIL Statements) DO WHILE Combining an Iterative Loop with a WHILE Condition Do UNTIL Demonstrating That a DO UNTIL Loop Executes at Least Once Combining an Iterative Loop with an UNTIL Condition LEAVE and CONTINUE Statements Conclusion Problems Chapter 13: Working with SAS Dates Introduction Reading Dates from Text Data Creating a SAS Date from Month, Day, and Year Values Describing a Date Constant Extracting the Day of the Week, Day of the Month, and Year from a SAS Date Adding a Format to the Bar Chart Computing Age from Date of Birth: The YRDIF Function Conclusion Problems

5 vii Chapter 14: Subsetting and Combining SAS Data Sets Introduction Subsetting (Filtering) Data in a SAS Data Set Describing a WHERE= Data Set Option Describing a Subsetting IF Statement A More Efficient Way to Subset Data When Reading Raw Data Creating Several Data Subsets in One DATA Step Combining SAS Data Sets (Combining Rows) Adding a Few Observations to a Large Data Set (PROC APPEND) Interleaving Data Sets Merging Two Data Sets (Adding Columns) Controlling Which Observations Are Included in a Merge (IN= Data Set Option) Performing a One-to-Many or Many-to-One Merge Merging Two Data Sets with Different BY Variable Names Merging Two Data Sets with One Character and One Numeric BY Variable Updating a Master File from a Transaction File (UPDATE Statement) Conclusion Problems Chapter 15: Describing SAS Functions Introduction Describing Some Useful Numeric Functions Function Name: MISSING Function Name: N Function Name: NMISS Function Name: SUM Function Name: MEAN Function Name: MIN Function Name: MAX Function Name: SMALLEST Function Name: LARGEST Programming Example Using the N, NMISS, MAX, LARGEST, and MEAN Functions. 226 Function Name: INPUT CALL Routine: CALL SORTN Function Name: LAG Function Name: DIF

6 viii Describing Some Useful Character Functions Function Names: LENGTHN and LENGTHC Function Names: TRIMN and STRIP Function Names: UPCASE, LOWCASE, and PROPCASE (Functions That Change Case) Function Name: PUT Function Name: SUBSTRN (Newer Version of the SUBSTR Function) Function Names: FIND and FINDC Function Names: CAT, CATS, and CATX Function Names: COUNT and COUNTC Function Name: COMPRESS Function Name: SCAN CALL Routine: CALL MISSING Function Names: NOTDIGIT, NOTALPHA, and NOTALNUM Function Names: ANYDIGIT, ANYALPHA, and ANYALNUM Function Name: TRANWRD Conclusion Problems Chapter 16: Working with Multiple Observations per Subject Introduction Useful Tools for Working with Longitudinal Data Describing First. and Last. Variables Computing Visit-to-Visit Differences Computing Differences Between the First and Last Visits Counting the Number of Visits for Each Patient Conclusion Problems Chapter 17: Describing Arrays Introduction What Is an Array? Describing a Character Array Performing an Operation on Every Numeric Variable in a Data Set Performing an Operation on Every Character Variable in a Data Set Converting a Data Set with One Observation per Subject into a Data Set with Multiple Observations per Subject

7 ix Converting a Data Set with Multiple Observations per Subject into a Data Set with One Observation per Subject Conclusion Problems Chapter 18: Displaying Your Data Introduction Producing a Simple Report Using PROC PRINT Using Labels Instead of Variable Names as Column Headings Including a BY Variable in a Listing Including the Number of Observations in a Listing Conclusion Problems Chapter 19: Summarizing Data with SAS Procedures Introduction Using PROC MEANS (with the Default Options) Using PROC MEANS Options to Customize the Summary Report Computing Statistics for Each Value of a BY Variable Using a CLASS Statement Instead of a BY Statement Including Multiple CLASS Variables with PROC MEANS Statistics Broken Down Every Way Using PROC MEANS to Create a Summary Data Set Letting PROC MEANS Name the Variables in the Output Data Set Creating a Summary Data Set with CLASS Variables Using a Formatted CLASS Variable Demonstrating PROC UNIVARIATE Conclusion Problems Chapter 20: Computing Frequencies Introduction Creating a Data Set to Demonstrate Features of PROC FREQ Using PROC FREQ to Generate One-Way Frequency Tables Creating Two-Way Frequency Tables Creating Three-Way Frequency Tables Using Formats to Create Groups for Numeric Variables

8 x Conclusion Problems Appendix: Solutions to the Odd-Numbered Problems Index From An Introduction to SAS University Edition, by Ron Cody. Copyright 2015, SAS Institute Inc., Cary, North Carolina, USA. ALL RIGHTS RESERVED.

An Introduction to SAS University Edition

An Introduction to SAS University Edition An Introduction to SAS University Edition Ron Cody From An Introduction to SAS University Edition. Full book available for purchase here. Contents List of Programs... xi About This Book... xvii About the

More information

INTRODUCTION TO SAS HOW SAS WORKS READING RAW DATA INTO SAS

INTRODUCTION TO SAS HOW SAS WORKS READING RAW DATA INTO SAS TO SAS NEED FOR SAS WHO USES SAS WHAT IS SAS? OVERVIEW OF BASE SAS SOFTWARE DATA MANAGEMENT FACILITY STRUCTURE OF SAS DATASET SAS PROGRAM PROGRAMMING LANGUAGE ELEMENTS OF THE SAS LANGUAGE RULES FOR SAS

More information

Contents. Tutorials Section 1. About SAS Enterprise Guide ix About This Book xi Acknowledgments xiii

Contents. Tutorials Section 1. About SAS Enterprise Guide ix About This Book xi Acknowledgments xiii Contents About SAS Enterprise Guide ix About This Book xi Acknowledgments xiii Tutorials Section 1 Tutorial A Getting Started with SAS Enterprise Guide 3 Starting SAS Enterprise Guide 3 SAS Enterprise

More information

Contents About SAS Enterprise Guide About This Book xi Acknowledgments xiii

Contents About SAS Enterprise Guide About This Book xi Acknowledgments xiii The Little SAS Enterprise Guide Book. Full book available for purchase here. Contents About SAS Enterprise Guide About This Book xi Acknowledgments xiii ix Tutorials Section 1 Tutorial A Getting Started

More information

Table of Contents. The RETAIN Statement. The LAG and DIF Functions. FIRST. and LAST. Temporary Variables. List of Programs.

Table of Contents. The RETAIN Statement. The LAG and DIF Functions. FIRST. and LAST. Temporary Variables. List of Programs. Table of Contents List of Programs Preface Acknowledgments ix xvii xix The RETAIN Statement Introduction 1 Demonstrating a DATA Step with and without a RETAIN Statement 1 Generating Sequential SUBJECT

More information

Base and Advance SAS

Base and Advance SAS Base and Advance SAS BASE SAS INTRODUCTION An Overview of the SAS System SAS Tasks Output produced by the SAS System SAS Tools (SAS Program - Data step and Proc step) A sample SAS program Exploring SAS

More information

BUSINESS ANALYTICS. 96 HOURS Practical Learning. DexLab Certified. Training Module. Gurgaon (Head Office)

BUSINESS ANALYTICS. 96 HOURS Practical Learning. DexLab Certified. Training Module. Gurgaon (Head Office) SAS (Base & Advanced) Analytics & Predictive Modeling Tableau BI 96 HOURS Practical Learning WEEKDAY & WEEKEND BATCHES CLASSROOM & LIVE ONLINE DexLab Certified BUSINESS ANALYTICS Training Module Gurgaon

More information

SAS CURRICULUM. BASE SAS Introduction

SAS CURRICULUM. BASE SAS Introduction SAS CURRICULUM BASE SAS Introduction Data Warehousing Concepts What is a Data Warehouse? What is a Data Mart? What is the difference between Relational Databases and the Data in Data Warehouse (OLTP versus

More information

Working with Character Data. December 11 th 2015 Toronto, Ontario

Working with Character Data. December 11 th 2015 Toronto, Ontario Working with Character Data December 11 th 2015 Toronto, Ontario 1 Agenda What is Character Data? How long is my Character Variable? Manipulating Character Data Truncation Functions Concatenation Functions

More information

A Survey of Some of the Most Useful SAS Functions

A Survey of Some of the Most Useful SAS Functions ABSTRACT A Survey of Some of the Most Useful SAS Functions Ron Cody, Camp Verde, Texas SAS Functions provide amazing power to your DATA step programming. Some of these functions are essential some of them

More information

Acknowledgments xi Preface xiii About the Author xv About This Book xvii New in the Macro Language xxi

Acknowledgments xi Preface xiii About the Author xv About This Book xvii New in the Macro Language xxi Contents Part 1 Acknowledgments xi Preface xiii About the Author xv About This Book xvii New in the Macro Language xxi Macro Basics Chapter 1 Introduction 3 1.1 Macro Facility Overview 3 1.2 Terminology

More information

CHARACTER DATA Acquisition, Manipulation, and Analysis. Andrew T. Kuligowski, HSN Swati Agarwal, Optum

CHARACTER DATA Acquisition, Manipulation, and Analysis. Andrew T. Kuligowski, HSN Swati Agarwal, Optum CHARACTER DATA Acquisition, Manipulation, and Analysis Andrew T. Kuligowski, HSN Swati Agarwal, Optum 1 CHARACTER DATA Acquisition, Manipulation, and Analysis Andrew T. Kuligowski, HSN Swati Agarwal, Optuminsight

More information

Big Data Executive Program

Big Data Executive Program Big Data Executive Program Big Data Executive Program Business Visualization for Big Data (BV) SAS Visual Analytics help people see things that were not obvious to them before. Even when data volumes are

More information

SAS Web Report Studio 3.1

SAS Web Report Studio 3.1 SAS Web Report Studio 3.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Web Report Studio 3.1: User s Guide. Cary, NC: SAS

More information

From Getting Started with the Graph Template Language in SAS. Full book available for purchase here.

From Getting Started with the Graph Template Language in SAS. Full book available for purchase here. From Getting Started with the Graph Template Language in SAS. Full book available for purchase here. Contents About This Book... xi About The Author... xv Acknowledgments...xvii Chapter 1: Introduction

More information

SAS (Statistical Analysis Software/System)

SAS (Statistical Analysis Software/System) SAS (Statistical Analysis Software/System) SAS Adv. Analytics or Predictive Modelling:- Class Room: Training Fee & Duration : 30K & 3 Months Online Training Fee & Duration : 33K & 3 Months Learning SAS:

More information

From Building Better Models with JMP Pro. Full book available for purchase here.

From Building Better Models with JMP Pro. Full book available for purchase here. From Building Better Models with JMP Pro. Full book available for purchase here. Contents Acknowledgments... ix About This Book... xi About These Authors... xiii Part 1 Introduction... 1 Chapter 1 Introduction...

More information

Learning SAS by Example

Learning SAS by Example Learning SAS by Example A Programmer's Guide Second Edition.sas Ron Cody The correct bibliographic citation for this manual is as follows: Cody, Ron. 2018. Learning SAS by Example: A Programmer's Guide,

More information

COGNOS BI I) BI introduction Products Introduction Architecture Workflows

COGNOS BI I) BI introduction Products Introduction Architecture Workflows COGNOS BI I) BI introduction Products Architecture Workflows II) Working with Framework Manager (Modeling Tool): Architecture Flow charts Creating Project Creating Data Sources Preparing Relational Metadata

More information

SAS (Statistical Analysis Software/System)

SAS (Statistical Analysis Software/System) SAS (Statistical Analysis Software/System) SAS Analytics:- Class Room: Training Fee & Duration : 23K & 3 Months Online: Training Fee & Duration : 25K & 3 Months Learning SAS: Getting Started with SAS Basic

More information

SAS (Statistical Analysis Software/System)

SAS (Statistical Analysis Software/System) SAS (Statistical Analysis Software/System) Clinical SAS:- Class Room: Training Fee & Duration : 23K & 3 Months Online: Training Fee & Duration : 25K & 3 Months Learning SAS: Getting Started with SAS Basic

More information

Reading data in SAS and Descriptive Statistics

Reading data in SAS and Descriptive Statistics P8130 Recitation 1: Reading data in SAS and Descriptive Statistics Zilan Chai Sep. 18 th /20 th 2017 Outline Intro to SAS (windows, basic rules) Getting Data into SAS Descriptive Statistics SAS Windows

More information

BASICS BEFORE STARTING SAS DATAWAREHOSING Concepts What is ETL ETL Concepts What is OLAP SAS. What is SAS History of SAS Modules available SAS

BASICS BEFORE STARTING SAS DATAWAREHOSING Concepts What is ETL ETL Concepts What is OLAP SAS. What is SAS History of SAS Modules available SAS SAS COURSE CONTENT Course Duration - 40hrs BASICS BEFORE STARTING SAS DATAWAREHOSING Concepts What is ETL ETL Concepts What is OLAP SAS What is SAS History of SAS Modules available SAS GETTING STARTED

More information

Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set

Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set Goal in video # 25: Learn about how to use the Get & Transform

More information

Microsoft Power Tools for Data Analysis #10 Power BI M Code: Helper Table to Calculate MAT By Month & Product. Notes from Video:

Microsoft Power Tools for Data Analysis #10 Power BI M Code: Helper Table to Calculate MAT By Month & Product. Notes from Video: Microsoft Power Tools for Data Analysis #10 Power BI M Code: Helper Table to Calculate MAT By Month & Product Table of Contents: Notes from Video: 1. Intermediate Fact Table / Helper Table:... 1 2. Goal

More information

When ANY Function Will Just NOT Do

When ANY Function Will Just NOT Do Paper 1174-2017 When ANY Function Will Just NOT Do Richann Watson, Experis; Karl Miller, inventiv Health ABSTRACT Have you ever been working on a task and wondered whether there might be a SAS function

More information

Basic Concepts #4. Data Step #3: Reading a SAS Data Set and Functions and Call Routines. JC Wang

Basic Concepts #4. Data Step #3: Reading a SAS Data Set and Functions and Call Routines. JC Wang Basic Concepts #4 Data Step #3: Reading a SAS Data Set and Functions and Call Routines JC Wang SET Statement SET SAS-data-name; Selected data-set-options: KEEP=/DROP= to read only wanted

More information

Understanding the Concepts and Features of Macro Programming 1

Understanding the Concepts and Features of Macro Programming 1 Contents Preface ix Acknowledgments xi Part 1 Understanding the Concepts and Features of Macro Programming 1 Chapter 1 Introduction 3 What Is the SAS Macro Facility? 4 What Are the Advantages of the SAS

More information

HOW TO USE THIS BOOK... V 1 GETTING STARTED... 2

HOW TO USE THIS BOOK... V 1 GETTING STARTED... 2 TABLE OF CONTENTS HOW TO USE THIS BOOK...................... V 1 GETTING STARTED.......................... 2 Introducing Data Analysis with Excel...2 Tour the Excel Window...3 Explore the Ribbon...4 Using

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

Fifteen Functions to Supercharge Your SAS Code

Fifteen Functions to Supercharge Your SAS Code MWSUG 2017 - Paper BB071 Fifteen Functions to Supercharge Your SAS Code Joshua M. Horstman, Nested Loop Consulting, Indianapolis, IN ABSTRACT The number of functions included in SAS software has exploded

More information

How to use Pivot table macro

How to use Pivot table macro How to use Pivot table macro Managing Pivot Tables Table Filter and Charts for Confluence add-on allows you to summarize your table data and produce its aggregated view in the form of a pivot table. You

More information

From Implementing CDISC Using SAS. Full book available for purchase here. About This Book... xi About The Authors... xvii Acknowledgments...

From Implementing CDISC Using SAS. Full book available for purchase here. About This Book... xi About The Authors... xvii Acknowledgments... From Implementing CDISC Using SAS. Full book available for purchase here. Contents About This Book... xi About The Authors... xvii Acknowledgments... xix Chapter 1: Implementation Strategies... 1 Why CDISC

More information

Office 2016 Excel Basics 06 Video/Class Project #18 Excel Basics 6: Customize Quick Access Toolbar (QAT) and Show New Ribbon Tabs

Office 2016 Excel Basics 06 Video/Class Project #18 Excel Basics 6: Customize Quick Access Toolbar (QAT) and Show New Ribbon Tabs **These pdf Notes are for video 6-8. Scroll down to see notes for all three videos. Office 2016 Excel Basics 06 Video/Class Project #18 Excel Basics 6: Customize Quick Access Toolbar (QAT) and Show New

More information

When ANY Function Will Just NOT Do

When ANY Function Will Just NOT Do When ANY Function Will Just NOT Do ANY AND NOT FUNCTIONS Use in SDTM and ADaM Data set Creation String (required): Character constant, variable or expression Start (optional): determine search direction

More information

Review Ch. 15 Spreadsheet and Worksheet Basics. 2010, 2006 South-Western, Cengage Learning

Review Ch. 15 Spreadsheet and Worksheet Basics. 2010, 2006 South-Western, Cengage Learning Review Ch. 15 Spreadsheet and Worksheet Basics 2010, 2006 South-Western, Cengage Learning Excel Worksheet Slide 2 Move Around a Worksheet Use the mouse and scroll bars Use and (or TAB) Use PAGE UP and

More information

Acknowledgments...iii

Acknowledgments...iii Contents Acknowledgments...iii Chapter 1: Introduction... 1 Why Use SSIS?... 1 Efficiency... 2 Database Agnostic... 3 Support and Documentation... 3 Availability... 3 An SSIS Overview... 3 OLE DB vs. ODBC...

More information

Contents. Excel 2013 Workbook... 1 Starting Excel The Startup Screen... 3 The Excel Screen... 4 Quick Access Toolbar...

Contents. Excel 2013 Workbook... 1 Starting Excel The Startup Screen... 3 The Excel Screen... 4 Quick Access Toolbar... Contents How to Use this Workbook... i BSBITU202A Create and use spreadsheets... ii BSBITU304A Produce spreadsheets... ix Files Used in this Workbook... xvi How to Download Exercise Files... xviii Office

More information

Contents of SAS Programming Techniques

Contents of SAS Programming Techniques Contents of SAS Programming Techniques Chapter 1 About SAS 1.1 Introduction 1.1.1 SAS modules 1.1.2 SAS module classification 1.1.3 SAS features 1.1.4 Three levels of SAS techniques 1.1.5 Chapter goal

More information

chapter two: building your first report... 15

chapter two: building your first report... 15 An Introduction to SAS Visual Analytics: How to Explore Numbers, Design Reports, and Gain Insight into Your Data. Full book available for purchase here. contents about this book... ix about these authors...

More information

Introduction to SAS Procedures SAS Basics III. Susan J. Slaughter, Avocet Solutions

Introduction to SAS Procedures SAS Basics III. Susan J. Slaughter, Avocet Solutions Introduction to SAS Procedures SAS Basics III Susan J. Slaughter, Avocet Solutions DATA versus PROC steps Two basic parts of SAS programs DATA step PROC step Begin with DATA statement Begin with PROC statement

More information

Fuzzy Matching with SAS: Data Analysts Tool to Cleaner Data. Josh Fogarasi

Fuzzy Matching with SAS: Data Analysts Tool to Cleaner Data. Josh Fogarasi Fuzzy Matching with SAS: Data Analysts Tool to Cleaner Data Josh Fogarasi Agenda What is Fuzzy Matching Anyways? Why is it relevant to a Data Professional? Introducing some useful SAS Text Functions Fuzzy

More information

SAS Business Rules Manager 2.1

SAS Business Rules Manager 2.1 SAS Business Rules Manager 2.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2013. SAS Business Rules Manager 2.1: User's Guide. Cary,

More information

Earthquake data in geonet.org.nz

Earthquake data in geonet.org.nz Earthquake data in geonet.org.nz There is are large gaps in the 2012 and 2013 data, so let s not use it. Instead we ll use a previous year. Go to http://http://quakesearch.geonet.org.nz/ At the screen,

More information

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR Toolbar Tour AutoSum + more functions Chart Wizard Currency, Percent, Comma Style Increase-Decrease Decimal Name Box Chart Wizard QUICK TOUR Name Box AutoSum Numeric Style Chart Wizard Formula Bar Active

More information

New Perspectives on Microsoft Excel Module 5: Working with Excel Tables, PivotTables, and PivotCharts

New Perspectives on Microsoft Excel Module 5: Working with Excel Tables, PivotTables, and PivotCharts New Perspectives on Microsoft Excel 2016 Module 5: Working with Excel Tables, PivotTables, and PivotCharts Objectives, Part 1 Explore a structured range of data Freeze rows and columns Plan and create

More information

Veco User Guides. Grids, Views, and Grid Reports

Veco User Guides. Grids, Views, and Grid Reports Veco User Guides Grids, Views, and Grid Reports Introduction A Grid is defined as being a list of data records presented to the user. A grid is shown generally when an option is selected from the Tree

More information

9 POINTS TO A GOOD LINE GRAPH

9 POINTS TO A GOOD LINE GRAPH NAME: PD: DATE: 9 POINTS TO A GOOD LINE GRAPH - 2013 1. Independent Variable on the HORIZONTAL (X) AXIS RANGE DIVIDED BY SPACES and round up to nearest usable number to spread out across the paper. LABELED

More information

Unit 3 Fill Series, Functions, Sorting

Unit 3 Fill Series, Functions, Sorting Unit 3 Fill Series, Functions, Sorting Fill enter repetitive values or formulas in an indicated direction Using the Fill command is much faster than using copy and paste you can do entire operation in

More information

Unit 3 Functions Review, Fill Series, Sorting, Merge & Center

Unit 3 Functions Review, Fill Series, Sorting, Merge & Center Unit 3 Functions Review, Fill Series, Sorting, Merge & Center Function built-in formula that performs simple or complex calculations automatically names a function instead of using operators (+, -, *,

More information

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts Microsoft Excel 2013 Enhanced Objectives Explore a structured range of data Freeze rows and columns Plan and create an Excel table Rename

More information

Choosing the Right Procedure

Choosing the Right Procedure 3 CHAPTER 1 Choosing the Right Procedure Functional Categories of Base SAS Procedures 3 Report Writing 3 Statistics 3 Utilities 4 Report-Writing Procedures 4 Statistical Procedures 5 Efficiency Issues

More information

Contents. About This Book...1

Contents. About This Book...1 Contents About This Book...1 Chapter 1: Basic Concepts...5 Overview...6 SAS Programs...7 SAS Libraries...13 Referencing SAS Files...15 SAS Data Sets...18 Variable Attributes...21 Summary...26 Practice...28

More information

User Guide. Data Preparation R-1.1

User Guide. Data Preparation R-1.1 User Guide Data Preparation R-1.1 Contents 1. About this Guide... 4 1.1. Document History... 4 1.2. Overview... 4 1.3. Target Audience... 4 2. Introduction... 4 2.1. Introducing the Big Data BizViz Data

More information

Key concepts through Excel Basic videos 01 to 25

Key concepts through Excel Basic videos 01 to 25 Key concepts through Excel Basic videos 01 to 25 1) Row and Colum make up Cell 2) All Cells = Worksheet = Sheet 3) Name of Sheet is in Sheet Tab 4) All Worksheets = Workbook File 5) Default Alignment In

More information

SAS CLINICAL SYLLABUS. DURATION: - 60 Hours

SAS CLINICAL SYLLABUS. DURATION: - 60 Hours SAS CLINICAL SYLLABUS DURATION: - 60 Hours BASE SAS PART - I Introduction To Sas System & Architecture History And Various Modules Features Variables & Sas Syntax Rules Sas Data Sets Data Set Options Operators

More information

Stat 302 Statistical Software and Its Applications SAS: Data I/O

Stat 302 Statistical Software and Its Applications SAS: Data I/O Stat 302 Statistical Software and Its Applications SAS: Data I/O Yen-Chi Chen Department of Statistics, University of Washington Autumn 2016 1 / 33 Getting Data Files Get the following data sets from the

More information

Introduction to PROC SQL

Introduction to PROC SQL Introduction to PROC SQL Steven First, Systems Seminar Consultants, Madison, WI ABSTRACT PROC SQL is a powerful Base SAS Procedure that combines the functionality of DATA and PROC steps into a single step.

More information

Sample Data. Sample Data APPENDIX A. Downloading the Sample Data. Images. Sample Databases

Sample Data. Sample Data APPENDIX A. Downloading the Sample Data. Images. Sample Databases APPENDIX A Sample Data Sample Data If you wish to follow the examples used in this book and I hope you will you will need some sample data to work with. All the files referenced in this book are available

More information

SAS Business Rules Manager 1.2

SAS Business Rules Manager 1.2 SAS Business Rules Manager 1.2 User s Guide Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2012. SAS Business Rules Manager 1.2. Cary,

More information

Ryan Stephens. Ron Plew Arie D. Jones. Sams Teach Yourself FIFTH EDITION. 800 East 96th Street, Indianapolis, Indiana, 46240

Ryan Stephens. Ron Plew Arie D. Jones. Sams Teach Yourself FIFTH EDITION. 800 East 96th Street, Indianapolis, Indiana, 46240 Ryan Stephens Ron Plew Arie D. Jones Sams Teach Yourself FIFTH EDITION 800 East 96th Street, Indianapolis, Indiana, 46240 Table of Contents Part I: An SQL Concepts Overview HOUR 1: Welcome to the World

More information

Stat 302 Statistical Software and Its Applications SAS: Data I/O & Descriptive Statistics

Stat 302 Statistical Software and Its Applications SAS: Data I/O & Descriptive Statistics Stat 302 Statistical Software and Its Applications SAS: Data I/O & Descriptive Statistics Fritz Scholz Department of Statistics, University of Washington Winter Quarter 2015 February 19, 2015 2 Getting

More information

Tasks Menu Reference. Introduction. Data Management APPENDIX 1

Tasks Menu Reference. Introduction. Data Management APPENDIX 1 229 APPENDIX 1 Tasks Menu Reference Introduction 229 Data Management 229 Report Writing 231 High Resolution Graphics 232 Low Resolution Graphics 233 Data Analysis 233 Planning Tools 235 EIS 236 Remote

More information

BMEGUI Tutorial 1 Spatial kriging

BMEGUI Tutorial 1 Spatial kriging BMEGUI Tutorial 1 Spatial kriging 1. Objective The primary objective of this exercise is to get used to the basic operations of BMEGUI using a purely spatial dataset. The analysis will consist in an exploratory

More information

SAS. Information Map Studio 3.1: Creating Your First Information Map

SAS. Information Map Studio 3.1: Creating Your First Information Map SAS Information Map Studio 3.1: Creating Your First Information Map The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Information Map Studio 3.1: Creating Your

More information

SAS Training BASE SAS CONCEPTS BASE SAS:

SAS Training BASE SAS CONCEPTS BASE SAS: SAS Training BASE SAS CONCEPTS BASE SAS: Dataset concept and creating a dataset from internal data Capturing data from external files (txt, CSV and tab) Capturing Non-Standard data (date, time and amounts)

More information

COURSE SYLLABUS. Credit Hours: Contact Hours Lab Hours 4 4 As needed by student

COURSE SYLLABUS. Credit Hours: Contact Hours Lab Hours 4 4 As needed by student Date Approved: Date Revised: 08/07 COURSE SYLLABUS Syllabus for: INFS 2010 Microcomputer Applications Discipline Number Course Name Former Quarter Course(s): N/A Catalog Description: This course is an

More information

User Guide. Data Preparation R-1.0

User Guide. Data Preparation R-1.0 User Guide Data Preparation R-1.0 Contents 1. About this Guide... 4 1.1. Document History... 4 1.2. Overview... 4 1.3. Target Audience... 4 2. Introduction... 4 2.1. Introducing the Big Data BizViz Data

More information

Facilities Manager Local Device Tracking

Facilities Manager Local Device Tracking Facilities Manager Local Device Tracking The Information Collection Engine (ICE) can track print volumes on all types of devices, whether they are networked or not. Devices that do not support SNMP or

More information

Tableau Advanced Training. Student Guide April x. For Evaluation Only

Tableau Advanced Training. Student Guide April x. For Evaluation Only Tableau Advanced Training Student Guide www.datarevelations.com 914.945.0567 April 2017 10.x Contents A. Warm Up 1 Bar Chart Colored by Profit 1 Salary Curve 2 2015 v s. 2014 Sales 3 VII. Programmatic

More information

SAS Online Training: Course contents: Agenda:

SAS Online Training: Course contents: Agenda: SAS Online Training: Course contents: Agenda: (1) Base SAS (6) Clinical SAS Online Training with Real time Projects (2) Advance SAS (7) Financial SAS Training Real time Projects (3) SQL (8) CV preparation

More information

Level I: Getting comfortable with my data in SAS. Descriptive Statistics

Level I: Getting comfortable with my data in SAS. Descriptive Statistics Level I: Getting comfortable with my data in SAS. Descriptive Statistics Quick Review of reading Data into SAS Preparing Data 1. Variable names in the first row make sure they are appropriate for the statistical

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

More information

HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE

HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE If your buyers use PayPal to pay for their purchases, you can quickly export all names and addresses to a type of spreadsheet known as a

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

Microsoft Office Excel 2013 Courses 24 Hours

Microsoft Office Excel 2013 Courses 24 Hours Microsoft Office Excel 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Getting Started With Excel 2013 Starting Excel 2013 Selecting the Blank Worksheet Template The Excel 2013 Cell

More information

Certificate Program. Introduction to Microsoft Excel 2013

Certificate Program. Introduction to Microsoft Excel 2013 Certificate Program We offer online education programs designed to provide the workforce skills necessary to enter a new field or advance your current career. Our Online Career Training Programs in the

More information

How to insert table in Excel?

How to insert table in Excel? What is Table in Excel? Tables allow you to analyze your data in Excel quickly and easily. How to insert table in Excel? To insert a table, execute the following steps. 1. Click any single cell inside

More information

Microsoft Office Excel

Microsoft Office Excel Microsoft Office 2007 - Excel Help Click on the Microsoft Office Excel Help button in the top right corner. Type the desired word in the search box and then press the Enter key. Choose the desired topic

More information

Chapter 6: Modifying and Combining Data Sets

Chapter 6: Modifying and Combining Data Sets Chapter 6: Modifying and Combining Data Sets The SET statement is a powerful statement in the DATA step. Its main use is to read in a previously created SAS data set which can be modified and saved as

More information

Practical File Answer key Class X (402)

Practical File Answer key Class X (402) Practical File Answer key Class X (402) 1) Create a Word Document and write all the steps to do following instructions. a) (i) Click on Indent Option of Paragraph group of Layout Tab. (ii) Set Left to

More information

USING MICROSOFT EXCEL 2016 Guided Project 4-3

USING MICROSOFT EXCEL 2016 Guided Project 4-3 Guided Project 4-3 Clemenson Imaging analyzes expense reports from field representatives as well as patient and image data. To complete the worksheets, you format data as a table and build an advanced

More information

Create Web Charts. With jqplot. Apress. Fabio Nelli

Create Web Charts. With jqplot. Apress. Fabio Nelli Create Web Charts With jqplot Fabio Nelli Apress Contents J About the Author About the Technical Reviewer Acknowledgments Introduction xv xvii xix xxi Chapter 1: Charting Technology Overview 1 Elements

More information

Using the Drag-and-Drop Report Builder

Using the Drag-and-Drop Report Builder Using the Drag-and-Drop Report Builder Salesforce, Spring 16 @salesforcedocs Last updated: January 7, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Introduction to SAS Procedures SAS Basics III. Susan J. Slaughter, Avocet Solutions

Introduction to SAS Procedures SAS Basics III. Susan J. Slaughter, Avocet Solutions Introduction to SAS Procedures SAS Basics III Susan J. Slaughter, Avocet Solutions SAS Essentials Section for people new to SAS Core presentations 1. How SAS Thinks 2. Introduction to DATA Step Programming

More information

Cody s Collection of Popular SAS Programming Tasks and How to Tackle Them

Cody s Collection of Popular SAS Programming Tasks and How to Tackle Them Cody s Collection of Popular SAS Programming Tasks and How to Tackle Them Ron Cody Contents List of Programs... ix About This Book... xv About The Author... xix Acknowledgments... xxi Chapter 1 Tasks Involving

More information

Report Builder Fields on Report Filters

Report Builder Fields on Report Filters Report Builder The Report Builder allows you to create custom reports based on predefined Report categories and templates. The category describes the type of Report, for example, Age Analysis, Appointments,

More information

Infinite Device Management

Infinite Device Management Infinite Device Management Tracking Locally Connected Devices - IDM/Print Audit 6 Version: Date: 22 05-Dec-2018 10:37 Please Note: This document is intended for use with Local Device Tracking using Print

More information

Getting Started with Microsoft Excel 2013

Getting Started with Microsoft Excel 2013 2015 Bow Valley College 1 Microsoft Excel Vocabulary Getting Started with Microsoft Excel 2013 Column: A grouping of information or data organized from top to bottom. In Excel columns are named with letters

More information

Excel Project 1 Creating a Worksheet and an Embedded Chart

Excel Project 1 Creating a Worksheet and an Embedded Chart 7 th grade Business & Computer Science 1 Excel Project 1 Creating a Worksheet and an Embedded Chart What is MS Excel? MS Excel is a powerful spreadsheet program that allows users to organize data, complete

More information

Printing Batch Unofficial Transcripts

Printing Batch Unofficial Transcripts Printing Batch Unofficial Transcripts On occasion, you may need to print unofficial transcripts for several students at one time. The Batch Transcripts process allows you to upload a text file containing

More information

SAS Data Integration Studio 3.3. User s Guide

SAS Data Integration Studio 3.3. User s Guide SAS Data Integration Studio 3.3 User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Data Integration Studio 3.3: User s Guide. Cary, NC: SAS Institute

More information

Candy is Dandy Project (Project #12)

Candy is Dandy Project (Project #12) Candy is Dandy Project (Project #12) You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those

More information

SAS Visual Analytics 8.2: Getting Started with Reports

SAS Visual Analytics 8.2: Getting Started with Reports SAS Visual Analytics 8.2: Getting Started with Reports Introduction Reporting The SAS Visual Analytics tools give you everything you need to produce and distribute clear and compelling reports. SAS Visual

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

Table of Contents Getting Started with Excel Creating a Workbook

Table of Contents Getting Started with Excel Creating a Workbook Finney Learning Systems i Table of Contents Welcome........................... vii Copying the Student Files................ viii Setting up Excel to Work with This Course...... viii Lesson 1 Getting Started

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

Consolidate Trial Balances

Consolidate Trial Balances Consolidate Trial Balances Introduction If you need to combine separately maintained data files to prepare a consolidated tax return or financial statement, you can use the Consolidate Trial Balances option

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited ADVANCED MICROSOFT EXCEL 2016 Advanced Microsoft Excel 2016 (EXC2016.3 version 1.0.1) Copyright Information Copyright 2016 Webucator. All rights reserved. The Authors Dave Dunn Dave Dunn joined Webucator

More information

Using SQL with SQL Developer 18.2

Using SQL with SQL Developer 18.2 One Introduction to SQL 2 - Definition 3 - Usage of SQL 4 - What is SQL used for? 5 - Who uses SQL? 6 - Definition of a Database 7 - What is SQL Developer? 8 Two The SQL Developer Interface 9 - Introduction

More information