The SAS Programmer s PROC REPORT Handbook
219 pages
English

Vous pourrez modifier la taille du texte de cet ouvrage

Découvre YouScribe en t'inscrivant gratuitement

Je m'inscris

The SAS Programmer's PROC REPORT Handbook , livre ebook

-

Découvre YouScribe en t'inscrivant gratuitement

Je m'inscris
Obtenez un accès à la bibliothèque pour le consulter en ligne
En savoir plus
219 pages
English

Vous pourrez modifier la taille du texte de cet ouvrage

Obtenez un accès à la bibliothèque pour le consulter en ligne
En savoir plus

Description

The SAS Programmer's PROC REPORT Handbook: Basic to Advanced Reporting Techniques is intended for programmers of all skill levels. Learn how to link multiple reports, add graphics and logos, and manipulate table of contents values to help refine your programs, macrotize where possible, troubleshoot easily, and get great-looking reports every time. From beginner to advanced, the examples in this book will help you harness all the power and capability of PROC REPORT.
With dozens of useful examples, this book is completely unique in three ways. First, this book describes the default behavior of table of contents nodes and labels, and how to change the nodes inside of PROC REPORT. The chapter also explains how to use PROC DOCUMENT in conjunction with PROC REPORT. Secondly, an entire chapter is dedicated to the troubleshooting of errors, warnings, and notes that are produced by PROC REPORT, including explanations of what generated the log message and how to avoid it. Third, the book explains how to preprocess your data in order to get the best output from PROC REPORT, and it explores reports that require multiple steps to create. Whether you work in banking/finance, pharmaceuticals, the health and life sciences, or government, this handbook is sure to be your new favorite reporting reference.

Sujets

Informations

Publié par
Date de parution 23 mars 2016
Nombre de lectures 1
EAN13 9781629602103
Langue English
Poids de l'ouvrage 20 Mo

Informations légales : prix de location à la page 0,0087€. Cette information est donnée uniquement à titre indicatif conformément à la législation en vigueur.

Extrait

The SAS Programmer s PROC REPORT Handbook
Basic to Advanced Reporting Techniques
Jane Eslinger
support.sas.com/bookstore
The correct bibliographic citation for this manual is as follows: Eslinger, Jane. 2016. The SAS Programmer s PROC REPORT Handbook: Basic to Advanced Reporting Techniques . Cary, NC: SAS Institute Inc.
The SAS Programmer s PROC REPORT Handbook: Basic to Advanced Reporting Techniques
Copyright 2016, SAS Institute Inc., Cary, NC, USA
ISBN 978-1-62960-144-1 (Hard copy) ISBN 978-1-62960-210-3 (EPUB) ISBN 978-1-62960-211-0 (MOBI) ISBN 978-1-62960-212-7 (PDF)
All Rights Reserved. Produced in the United States of America.
For a hard copy book: No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, or otherwise, without the prior written permission of the publisher, SAS Institute Inc.
For a web download or e-book: Your use of this publication shall be governed by the terms established by the vendor at the time you acquire this publication.
The scanning, uploading, and distribution of this book via the Internet or any other means without the permission of the publisher is illegal and punishable by law. Please purchase only authorized electronic editions and do not participate in or encourage electronic piracy of copyrighted materials. Your support of others rights is appreciated.
U.S. Government License Rights; Restricted Rights: The Software and its documentation is commercial computer software developed at private expense and is provided with RESTRICTED RIGHTS to the United States Government. Use, duplication, or disclosure of the Software by the United States Government is subject to the license terms of this Agreement pursuant to, as applicable, FAR 12.212, DFAR 227.7202-1(a), DFAR 227.7202-3(a), and DFAR 227.7202-4, and, to the extent required under U.S. federal law, the minimum restricted rights as set out in FAR 52.227-19 (DEC 2007). If FAR 52.227-19 is applicable, this provision serves as notice under clause (c) thereof and no other notice is required to be affixed to the Software or documentation. The Government s rights in Software and documentation shall be only those set forth in this Agreement.
SAS Institute Inc., SAS Campus Drive, Cary, NC 27513-2414
March 2016
SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. indicates USA registration.
Other brand and product names are trademarks of their respective companies.
SAS software may be provided with certain third-party software, including but not limited to open-source software, which is licensed under its applicable third-party software license agreement. For license information about third-party software distributed with SAS software, refer to http://support.sas.com/thirdpartylicenses .
Contents
About this Book
About the Author
Acknowledgments
Preface
Chapter 1: Syntax - How to Use Statements and Their Options
1.1 Introduction
1.2 PROC REPORT Statement
1.2.1 General Options
1.2.2 Report Contents Options
1.2.3 Report Appearance Options
1.3 COLUMN Statement
1.4 DEFINE Statement
1.4.1 Usage Options
1.4.2 Interaction Options
1.4.3 Appearance Options
1.4.4 Utility Options
1.5 BREAK Statement
1.6 RBREAK Statement
1.7 COMPUTE Statement
1.8 ENDCOMP Statement
1.9 CALL DEFINE Statement
1.9.1 Argument 1: Column-ID
1.9.2 Argument 2: Attribute Name
1.9.3 Argument 3: Attribute Value
1.10 LINE Statement
1.11 Global Statements
Chapter 2: Concepts - How PROC REPORT Works Behind the Scenes
2.1 Introduction
2.2 General Execution
2.3 Compute Blocks
2.3.1 COMPUTE Statement
2.3.2 Execution of Compute Blocks
2.4 Referencing Report-items
2.5 Left to Right Availability
2.6 Repeating GROUP or ORDER Variable Values
2.6.1 Character Variables
2.6.2 Numeric Variables
2.6.3 Undesired Repeating Values
2.7 Column Widths
2.8 Date Variables
2.9 Temporary Variables
2.10 Sorting and the ORDER= Option
2.11 Paging
Chapter 3: Examples - How to Get the Desired Report
3.1 Introduction
3.2 Standard Reports
3.2.1 Create a Basic Report
3.2.2 Define a Variable as ORDER
3.2.3 Define a Variable as GROUP
3.2.4 Create a New Report-Item
3.2.5 Produce Summary Rows
3.3 Nonstandard Reports
3.3.1 Calculate Percentages within Groups
3.3.2 Customized Sort Order
3.3.3 Multiple Summary Rows at One Location
3.3.4 Rows Created with a LINE Statement Versus a BREAK Statement
3.3.5 Conditionally Display a LINE Statement
3.4 Special Data Consideration Reports
3.4.1 Wide Tables
3.4.2 Using ORDER=DATA
3.4.3 Using the COMPLETEROWS Option
3.4.4 Output a Table with No Data
3.4.5 Dynamically Assign Spanning Header Text
Chapter 4: Examples - How to Use ACROSS Variables
4.1 Introduction
4.2 Standard Reports
4.2.1 Stack a Statistic
4.2.2 Multiple Variables under an ACROSS Variable
4.2.3 A DISPLAY Variable under an ACROSS Variable
4.2.4 A GROUP Variable under an ACROSS Variable
4.2.5 Create New Report-Items
4.2.6 Percentages
4.3 Header Section Rows
4.3.1 Default Header Section Created with ACROSS
4.3.2 Place a Spanning Header beside ACROSS Values
4.3.3 Place Spanning Headers beside ACROSS Label
4.3.4 Place Multiple Spanning Headers beside ACROSS Header Rows
4.3.5 Remove ACROSS Label Row
4.3.6 Counts As Part of ACROSS Values
4.4 Nonstandard Reports
4.4.1 Customized Sort Order
4.4.2 Creating Subtotal Columns
4.4.3 Nesting ACROSS Variables
4.4.4 Hide a Column under an ACROSS
4.4.5 Vertical Page Breaks
4.4.6 Use Macro to Create Column References
Chapter 5: Examples - How to Determine When to Pre-Process the Data
5.1 Introduction
5.2 Sort by Statistic
5.2.1 Grouped Report, No ACROSS Variable
5.2.2 Grouped Reports with an ACROSS Variable
5.3 Use COMPLETEROWS with ACROSS
5.3.1 COMPLETEROWS and a GROUP Variable under an ACROSS Variable
5.3.2 COMPLETEROWS and a DISPLAY Variable under an ACROSS
5.4 Use COMPLETEROWS with Multiple GROUP Variables
5.5 Use Information from a Variable in Header and Data Sections
5.6 Wrap Text at a Specific Place
5.7 Incorporate Various Data Pieces into One Report
5.7.1 Combine Detail and Summary Information
5.7.2 The Importance of ORDER Variables
5.8 Create the Look of Merged Cells
5.8.1 Merge Vertically
5.8.2 Merge Horizontally
Chapter 6: Styles - How to Change a Report s Appearance
6.1 Introduction
6.2 STYLE= Option
6.3 Borders
6.3.1 FRAME= and RULES= Attributes
6.3.2 Column (Data) Borders
6.3.3 Header Borders
6.4 Trafficlighting
6.4.1 Color Based on Cell s Value
6.4.2 Color Based on Another Report-item
6.4.3 Color on the Diagonal
6.5 Trafficlighting under an ACROSS Variable
6.5.1 Color Based on Cell s Value
6.5.2 Color Based on Another Report-item
6.5.3 Color on the Diagonal
6.6 Color in Headers
6.6.1 STYLE(HEADER)= on PROC REPORT Statement
6.6.2 STYLE(HEADER)= on DEFINE Statement
6.6.3 Spanning Header
6.6.4 ACROSS Variable Label and Value Headers
6.6.5 ACROSS Value Headers
6.6.6 ACROSS Label versus ACROSS Values
6.7 LINE Statements
6.8 Advanced Color and Border Assignments
6.8.1 Apply Multiple Styles on One Cell
6.8.2 Color Every Other Row
6.8.3 Change Borders in HTML Output
6.8.4 Special Instructions for the ODS Destination
6.9 Images
6.9.1 Place an Image above or below a Report Table
6.9.2 Place an Image inside of the Table
6.10 URLs
6.10.1 Hyperlink to a Static Location
6.10.2 Link to Numerous Files
Chapter 7: Table of Contents - How to Manipulate with CONTENTS= and PROC DOCUMENT
7.1 Introduction
7.2 Default Nodes
7.3 BY-Variable Nodes
7.4 DEFINE Statement CONTENTS=
7.5 BREAK Statement CONTENTS=
7.6 RBREAK Statement CONTENTS=
7.7 ODS DOCUMENT and PROC DOCUMENT
7.7.1 ODS DOCUMENT Convention
7.7.2 PROC DOCUMENT Statements and Options
7.7.3 Default Items
7.7.4 BY-Variable Item List
7.7.5 Parent Node with Multiple Child Nodes
7.7.6 Combine Multiple PROC REPORT Steps under One Node
Chapter 8: Debugging Techniques - How to Troubleshoot
8.1 Introduction
8.2 Errors, Warnings, and Notes in the Log
8.2.1 DEFINE Statement
8.2.2 BREAK Statement
8.2.3 Compute Block Statements
8.3 Temporary Variable Values
8.3.1 Output via a LINE Statement
8.3.2 Output via a COMPUTED Variable
8.4 General Tips
References
Books
Conference Papers
Technical Paper
SAS Documentation
SAS Notes
Index
About This Book
Purpose
The purpose of this book is to describe every aspect of PROC REPORT. The book reviews options and syntax and how the data set is processed behind the scenes. Most importantly, it provides many examples of the kinds of reports programmers need to create every day. The book explains why specific options and statements are required for certain kinds of reports and provides the most efficient code for generating the de

  • Univers Univers
  • Ebooks Ebooks
  • Livres audio Livres audio
  • Presse Presse
  • Podcasts Podcasts
  • BD BD
  • Documents Documents