1. Base Programming. GIORGIO RUSSOLILLO - Cours de prépara+on à la cer+fica+on SAS «Base Programming»

Size: px
Start display at page:

Download "1. Base Programming. GIORGIO RUSSOLILLO - Cours de prépara+on à la cer+fica+on SAS «Base Programming»"

Transcription

1 1. Base Programming GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 9

2 What is SAS Highly flexible and integrated soiware environment; you can use SAS for: GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 10

3 Base SAS The founda+on of SAS soiware is called Base SAS. GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 11

4 This course assumes that you are running Base SAS soiware in the windowing environment Which programming workspace am I using? Help > About GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 12

5 Set up prac+ce data To create a permanent SAS library named sasuser : Help > Learning SAS programming > OK GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 13

6 SAS program A SAS program is a data file that is formaaed in a way that SAS can understand. It can consist of one or more steps: a DATA step, a PROC step or any combina+on of the two GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 14

7 Data step With a Data step you can create or modify data sets: You use a Data step for: Put your data in a SAS dataset Compute values Check for and correct errors in your data Produce new SAS datasets by subsepng, supersepng, merging and upda+ng exis+ng data GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 15

8 Proc Step Invoke prewriaen rou+nes that enable you to analyze and process the data in a SAS dataset You can use PROC setps to: Create a report that lists the data Produce decrip+ve sta+s+cs Create a summary report Produce plot and chart GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 16

9 Generally a program involves a combina+on of the two steps like this: GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 17

10 SAS Statements A SAS program consists of statements A SAS statement: Usually begins with a SAS keyword Always ends with a semicolon GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 18

11 A SAS program GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 19

12 Understanding a SAS program Tree steps.. GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 20

13 .. 13 statements.. GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 21

14 .. Among them two global statements : Global statements are allalonestatements. You can use global statements anywhere in a SAS program. Global statements are not executable; they take effect as soon as SAS compiles program statements. GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 22

15 SAS statements are free format They can begin and end anywhere on a line A statement can con+nue on several lines Several statements can be on the same line Blanks or special characters separare words in a SAS statement GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 23

16 Processing a program DATA sasuser.admit2; SET sasuser.admit; WHERE age>39; RUN; Bounderies of a step: PROC PRINT DATA=sasuser.admit2; A step begins by DATA or PROC statements RUN; A step ends by RUN or QUIT statement (although the RUN statement is not always required between steps, using it can make the SAS program easier to read and debug) At the step boundary, SAS: i) executes any statements that have not previously executed ii) ends the step Steps are submiaed in Enhanced Editor or in Program Editor windows When you submit a program, SAS execute it step by step. A log is generated in the Log window (for both PROC and DATA steps) Reports are generated in Output (as a list) and in Results Viewer (in HTML) windows for most of PROC steps (excep+ons: copy, sort...). You can find reports also in Results window. GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 24

17 Report Window Some SAS program open an interac+ve window, such as a REPORT window. You can use this window to directly modify data PROC REPORT DATA=sasuser.admit WINDOWS; COLUMNS id nams sex age actlevel; RUN; GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 25

18 Programming workspace: Editor Windows Enhanced Editor Features: Program Editor Features: Opening SAS programs Entering, edi+ng and submipng SAS programs Using the command line or menus Saving SAS programs Clearing contents Opening SAS programs Entering, edi+ng and submipng SAS programs Using the command line or menus Saving SAS programs Clearing contents Color Coding and sintax checking Expandable and collapsibile sec+ons Recordable macros Support for keyboard shortcuts Mul+level undo and redo Recalling Submiaed statements For clear any of these windows, when the window is ac+ve: Edit > Clear all GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 26

19 Programming workspace: Editor Windows GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 27

20 Sepng result formats Two formats: Lis+ng and HTML. Different versions, different default. Tools > Op+ons > Preferences > Results Both HTML and LISTING are the default in SAS 9.3 in Windows and UNIX Just HTML is the default in SAS 9.4 in Windows and UNIX In other plavorms, you have just LISTING mode, but you can create HTML output using programming statements You can choose to show the HTML output in another browser GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 28

21 The Log windows The Log window displays messages about your SAS session and about any SAS programs that you submit. To display this window : View > Log To clear this window : Edit > Clear all GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 29

22 The output windows The Output and Result Viewer windows list output from SAS program that you submit. Output shows results in LISTING mode, Results Viewer shows results in HTML mode By default they are behind the editor and the log windows. When you create output, they automa+cally move to the front of your display (Output behind Result Viewer). To display output window : View > Output The Results window lists and arranges in a tree structure the output. It allows browsing output easily It allows viewing, saving and prin+ng individual items of output It dislays separate icons for LISTING and HTML outputs To display this window : View > Results GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 30

23 The explorer window The Explorer window allows you to view and manage SAS files (in the libraries) but also nonsas (external) files. create new libraries and SAS files Moving, coping and dele+ng files Create shortcuts to external files. To display this window : View > Explorer GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 31

24 SAS Libraries A SAS library is a collec+on of SAS files stored in the same directory Temporary SAS libraries last only for the current session Permanent SAS Libraries are available during subsequent sessions GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 32

25 Referring a SAS dataset Two level (divided by a period) names: libref dataset name They refer to the same (temporary) library GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 33

26 If you don t specify a library name when you create a file (or you specify the library name Work), the file is stored in the temporary SAS data library GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 34

27 Rules for SAS filenames and libref Filename Can be 1 to 32 characters long Must begin with a leaer (uppercase or lowercase) or an underscore Can con+nue with any combina+on of numbers, leaers or underscores Ex: Payroll, LABDATA1995_1997, E+matedTaxPayments3 Libref Can be 1 to 8 characters long Must begin with a leaer (uppercase or lowercase) or an underscore Can con+nue with any combina+on of numbers, leaers or underscores GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 35

28 SAS Datasets A SAS Dataset is a file that consists of two parts: a descriptor por,on and a data por,on GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 36

29 Descrip+on por+on PROC CONTENTS DATA=sasuser.insure; RUN; Name of the dataset Date and +me the dataset was created The number of observa+ons The number of variables The properies (akributes) of each variable GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 37

30 Variable Aaributes: Name Variable Name, as the File Name: Can be 1 to 32 characters long Must begin with a leaer (uppercase or lowercase) or an underscore Can con+nue with any combina+on of numbers, leaers or underscores GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 38

31 Variable Aaributes: Type Can contain any values A blank represents a missing value for character variables Can contain only numeric values A period represents a missing value for numeric variables GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 39

32 Variable Aaributes: Length Length is measured in bytes (1 character > 1 byte) Numeric variables are stored by default in 8 bytes GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 40

33 Variable aaributes: Format & Informat Format indicates how a data value is displayed by SAS Ex: To display the value 1234 as $1, you can use the DOLLAR8.2 format Informat indicates how a raw data value is read by SAS in order to be converted in a SAS data value Ex: $12, contains two special characters. You can use informat op+on COMMA10. for removing dollar symbol and comma, in order to store as a numeric value GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 41

34 Variable aaributes: Label The label is a descrip+ve text up to 256 character long GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 42

35 Data por+on It is a collec+on of values arranged in a rectangular table PROC PRINT DATA=sasuser.insure noobs; RUN; GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 43

36 File Shortcuts You can create a file shortcut to an external file and store it in the File Shortcuts folder in the Explorer window. fileref is an op+onal name that is used to iden+fy an external file in SAS. you can se a file shortcut to open browse and submit a file When you delete a file shortcut, the pointer to the file is deleted. However the file s+ll exists in its phisical loca+on GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 44

37 Help Using this window is a task oriented help referring to the ac+ve window. Other op+ons of the help menu: Sas help and Documenta+on (complete guide to SAS) Gepng started tutorials Learning SAS programming (create dataset used in training) SAS on the web (technical support) GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 45

5. Crea+ng SAS Datasets from external files. GIORGIO RUSSOLILLO - Cours de prépara+on à la cer+fica+on SAS «Base Programming»

5. Crea+ng SAS Datasets from external files. GIORGIO RUSSOLILLO - Cours de prépara+on à la cer+fica+on SAS «Base Programming» 5. Crea+ng SAS Datasets from external files 107 Crea+ng a SAS dataset from a raw data file 108 LIBNAME statement In most of cases, you may want to assign a libref to a certain folder (a SAS library) LIBNAME

More information

Introduction to SAS on Windows

Introduction to SAS on Windows https://udrive.oit.umass.edu/statdata/sas1.zip Introduction to SAS on Windows for SAS Versions 8 or 9 October 2009 I. Introduction...2 Availability and Cost...2 Hardware and Software Requirements...2 Documentation...2

More information

Enhancing the SAS Enhanced Editor with Toolbar Customizations Lynn Mullins, PPD, Cincinnati, Ohio

Enhancing the SAS Enhanced Editor with Toolbar Customizations Lynn Mullins, PPD, Cincinnati, Ohio PharmaSUG 016 - Paper QT1 Enhancing the SAS Enhanced Editor with Toolbar Customizations Lynn Mullins, PPD, Cincinnati, Ohio ABSTRACT One of the most important tools for SAS programmers is the Display Manager

More information

Getting Started With SPSS

Getting Started With SPSS Getting Started With SPSS To investigate the research questions posed in each section of this site, we ll be using SPSS, an IBM computer software package specifically designed for use in the social sciences.

More information

Before You Begin... 2 Running SAS in Batch Mode... 2 Printing the Output of Your Program... 3 SAS Statements and Syntax... 3

Before You Begin... 2 Running SAS in Batch Mode... 2 Printing the Output of Your Program... 3 SAS Statements and Syntax... 3 Using SAS In UNIX 2010 Stanford University provides UNIX computing resources on the UNIX Systems, which can be accessed through the Stanford University Network (SUNet). This document provides a basic overview

More information

UOFL SHAREPOINT ADMINISTRATORS GUIDE

UOFL SHAREPOINT ADMINISTRATORS GUIDE UOFL SHAREPOINT ADMINISTRATORS GUIDE WOW What Power! Learn how to administer a SharePoint site. [Type text] SharePoint Administrator Training Table of Contents Basics... 3 Definitions... 3 The Ribbon...

More information

4 Other useful features on the course web page. 5 Accessing SAS

4 Other useful features on the course web page. 5 Accessing SAS 1 Using SAS outside of ITCs Statistical Methods and Computing, 22S:30/105 Instructor: Cowles Lab 1 Jan 31, 2014 You can access SAS from off campus by using the ITC Virtual Desktop Go to https://virtualdesktopuiowaedu

More information

darlingharbour.com Content Management System Tenant User Guide

darlingharbour.com Content Management System Tenant User Guide darlingharbour.com Content Management System Tenant User Guide August 2014 Table of Contents 1 Introduction... 1 2 Getting started... 1 2.1 Requirements...1 2.2 Logging in...1 2.3 Change your Password...2

More information

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

UHR Training Services Student Manual

UHR Training Services Student Manual UHR Training Services Student Manual October 2012 1 Logging in to CareWorks Clicking the copyright symbol on the bottom left of the footer takes you to the sign-in screen and then to the control panel.

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

Topography of an Origin Project and Workspace

Topography of an Origin Project and Workspace Origin Basics Topography of an Origin Project and Workspace When you start Origin, a new project opens displaying a worksheet window in the workspace. The worksheet is one type of window available in Origin.

More information

The. Little SAS Book

The. Little SAS Book The A Programming Approach Little SAS Book a p r i m e r F I F T H E D I T I O N Lora D. Delwiche and Susan J. Slaughter From The Little SAS Book, Fifth Edition. Full book available for purchase here.

More information

IBM Rational Developer for i. Maintain an ILE RPG application using Remote System Explorer Edit, Compile, and Debug

IBM Rational Developer for i. Maintain an ILE RPG application using Remote System Explorer Edit, Compile, and Debug IBM Rational Developer for i Maintain an ILE RPG application using Remote System Explorer Edit, Compile, and Debug Open Lab 430247 Using RSE 450153 Rational Developer for i V7.5 iv Maintain an ILE RPG

More information

App Building Guidelines

App Building Guidelines App Building Guidelines App Building Guidelines Table of Contents Definition of Apps... 2 Most Recent Vintage Dataset... 2 Meta Info tab... 2 Extension yxwz not yxmd... 3 Map Input... 3 Report Output...

More information

An Introduction to SAS/SHARE, By Example

An Introduction to SAS/SHARE, By Example Paper 020-29 An Introduction to SAS/SHARE, By Example Larry Altmayer, U.S. Census Bureau, Washington, DC ABSTRACT SAS/SHARE software is a useful tool for allowing several users to simultaneously access

More information

Umbraco v4 Editors Manual

Umbraco v4 Editors Manual Umbraco v4 Editors Manual Produced by the Umbraco Community Umbraco // The Friendly CMS Contents 1 Introduction... 3 2 Getting Started with Umbraco... 4 2.1 Logging On... 4 2.2 The Edit Mode Interface...

More information

How to Download Census Data from American Factfinder and Display it in ArcMap

How to Download Census Data from American Factfinder and Display it in ArcMap How to Download Census Data from American Factfinder and Display it in ArcMap Factfinder provides census and ACS (American Community Survey) data that can be downloaded in a tabular format and joined with

More information

Introduction to IBM SPSS Statistics

Introduction to IBM SPSS Statistics CONTENTS Arizona State University College of Health Solutions College of Nursing and Health Innovation Introduction to IBM SPSS Statistics Edward A. Greenberg, PhD Director, Data Lab PAGE About This Document

More information

SAS PROGRAMMING ESSENTIALS FOR STATISTICAL COMPUTING IN DAIRY RESEARCH

SAS PROGRAMMING ESSENTIALS FOR STATISTICAL COMPUTING IN DAIRY RESEARCH SAS PROGRAMMING ESSENTIALS FOR STATISTICAL COMPUTING IN DAIRY RESEARCH A.K. Sharma NDRI, Karnal-132 001 aksharma@ndri.res.in 1. Introduction Statistical Computing is the interface between Statistics and

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

Chapter 2 The Data Table. Chapter Table of Contents

Chapter 2 The Data Table. Chapter Table of Contents Chapter 2 The Data Table Chapter Table of Contents Introduction... 21 Bringing in Data... 22 OpeningLocalFiles... 22 OpeningSASFiles... 27 UsingtheQueryWindow... 28 Modifying Tables... 31 Viewing and Editing

More information

DBF Chapter. Note to UNIX and OS/390 Users. Import/Export Facility CHAPTER 7

DBF Chapter. Note to UNIX and OS/390 Users. Import/Export Facility CHAPTER 7 97 CHAPTER 7 DBF Chapter Note to UNIX and OS/390 Users 97 Import/Export Facility 97 Understanding DBF Essentials 98 DBF Files 98 DBF File Naming Conventions 99 DBF File Data Types 99 ACCESS Procedure Data

More information

USER GUIDE. Let s get started! Notepad Basics... 2. Notepad Settings... 4. Keyboard Editor... 6. Getting Organized... 9. Sharing your work...

USER GUIDE. Let s get started! Notepad Basics... 2. Notepad Settings... 4. Keyboard Editor... 6. Getting Organized... 9. Sharing your work... USER GUIDE Notepad Basics... 2 Notepad Settings... 4 Keyboard Editor... 6 Getting Organized... 9 Sharing your work... 11 Importing a Document... 12 Let s get started! 1 Page Notepad Basics Create a Notepad:

More information

Introduction to SPSS 16.0

Introduction to SPSS 16.0 Introduction to SPSS 16.0 Edited by Emily Blumenthal Center for Social Science Computation and Research 110 Savery Hall University of Washington Seattle, WA 98195 USA (206) 543-8110 November 2010 http://julius.csscr.washington.edu/pdf/spss.pdf

More information

SPSS: Getting Started. For Windows

SPSS: Getting Started. For Windows For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 Introduction to SPSS Tutorials... 3 1.2 Introduction to SPSS... 3 1.3 Overview of SPSS for Windows... 3 Section 2: Entering

More information

Microsoft Office Access 2007 Basics

Microsoft Office Access 2007 Basics Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: TRAININGLAB@MONROE.LIB.MI.US MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER

More information

Top 10 Things to Know about WRDS

Top 10 Things to Know about WRDS Top 10 Things to Know about WRDS 1. Do I need special software to use WRDS? WRDS was built to allow users to use standard and popular software. There is no WRDSspecific software to install. For example,

More information

From The Little SAS Book, Fifth Edition. Full book available for purchase here.

From The Little SAS Book, Fifth Edition. Full book available for purchase here. From The Little SAS Book, Fifth Edition. Full book available for purchase here. Acknowledgments ix Introducing SAS Software About This Book xi What s New xiv x Chapter 1 Getting Started Using SAS Software

More information

Fairfield University Using Xythos for File Sharing

Fairfield University Using Xythos for File Sharing Fairfield University Using Xythos for File Sharing Version 7.0 Table of Contents I: Manage your Department Folder...2 Your Department Folder... 2 II: Sharing Folders and Files Inside of Fairfield U...3

More information

Introduction to Microsoft Access XP

Introduction to Microsoft Access XP Introduction to Microsoft Access XP Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. An address book or a library

More information

Excel 2003 Tutorial I

Excel 2003 Tutorial I This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial I Spreadsheet Basics Screen Layout Title bar Menu bar

More information

File Management With Windows Explorer

File Management With Windows Explorer File Management With Windows Explorer Preamble: After you have created and saved numerous files using various programs, file management, the process of organizing and keeping track of all your files, can

More information

Using Adobe Dreamweaver CS4 (10.0)

Using Adobe Dreamweaver CS4 (10.0) Getting Started Before you begin create a folder on your desktop called DreamweaverTraining This is where you will save your pages. Inside of the DreamweaverTraining folder, create another folder called

More information

Using Macros to Automate SAS Processing Kari Richardson, SAS Institute, Cary, NC Eric Rossland, SAS Institute, Dallas, TX

Using Macros to Automate SAS Processing Kari Richardson, SAS Institute, Cary, NC Eric Rossland, SAS Institute, Dallas, TX Paper 126-29 Using Macros to Automate SAS Processing Kari Richardson, SAS Institute, Cary, NC Eric Rossland, SAS Institute, Dallas, TX ABSTRACT This hands-on workshop shows how to use the SAS Macro Facility

More information

CHAPTER 6: SEARCHING AN ONLINE DATABASE

CHAPTER 6: SEARCHING AN ONLINE DATABASE CHAPTER 6: SEARCHING AN ONLINE DATABASE WHAT S INSIDE Searching an Online Database... 6-1 Selecting a Display Mode... 6-1 Searching a Database... 6-1 Reviewing References... 6-2 Finding Full Text for a

More information

Mentor Tools tutorial Bold Browser Design Manager Design Architect Library Components Quicksim Creating and Compiling the VHDL Model.

Mentor Tools tutorial Bold Browser Design Manager Design Architect Library Components Quicksim Creating and Compiling the VHDL Model. Mentor Tools tutorial Bold Browser Design Manager Design Architect Library Components Quicksim Creating and Compiling the VHDL Model. Introduction To Mentor Graphics Mentor Graphics BOLD browser allows

More information

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 University of Sheffield Contents 1. INTRODUCTION... 3 2. GETTING STARTED... 4 2.1 STARTING POWERPOINT... 4 3. THE USER INTERFACE...

More information

3 IDE (Integrated Development Environment)

3 IDE (Integrated Development Environment) Visual C++ 6.0 Guide Part I 1 Introduction Microsoft Visual C++ is a software application used to write other applications in C++/C. It is a member of the Microsoft Visual Studio development tools suite,

More information

An Introduction to SASlFSP Software Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California

An Introduction to SASlFSP Software Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California An Introduction to SASlFSP Software Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California ABSTRACT SASIFSP is a set of procedures used to perform full screen interactive

More information

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS Last Edited: 2012-07-09 1 Navigate the document interface... 4 Create and Name a new document... 5 Create a new Google document... 5 Name Google documents...

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...

More information

How to create pop-up menus

How to create pop-up menus How to create pop-up menus Pop-up menus are menus that are displayed in a browser when a site visitor moves the pointer over or clicks a trigger image. Items in a pop-up menu can have URL links attached

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1 Business Portal for Microsoft Dynamics GP 2010 User s Guide Release 5.1 Copyright Copyright 2011 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and

More information

NDSU Technology Learning & Media Center. Introduction to Google Sites

NDSU Technology Learning & Media Center. Introduction to Google Sites NDSU Technology Learning & Media Center QBB 150C 231-5130 www.ndsu.edu/its/tlmc Introduction to Google Sites Get Help at the TLMC 1. Get help with class projects on a walk-in basis; student learning assistants

More information

For Introduction to Java Programming, 5E By Y. Daniel Liang

For Introduction to Java Programming, 5E By Y. Daniel Liang Supplement H: NetBeans Tutorial For Introduction to Java Programming, 5E By Y. Daniel Liang This supplement covers the following topics: Getting Started with NetBeans Creating a Project Creating, Mounting,

More information

Business Objects Enterprise version 4.1. Report Viewing

Business Objects Enterprise version 4.1. Report Viewing Business Objects Enterprise version 4.1 Note about Java: With earlier versions, the Java run-time was not needed for report viewing; but was needed for report writing. The default behavior in version 4.1

More information

WebEx Remote Access User s Guide

WebEx Remote Access User s Guide About This Guide This guide introduces you to WebEx Remote Access and its features. This guide assumes that you have a user account for your Remote Access service. Note To obtain a user account, contact

More information

Professional. SlickEdif. John Hurst IC..T...L. i 1 8 О 7» \ WILEY \ Wiley Publishing, Inc.

Professional. SlickEdif. John Hurst IC..T...L. i 1 8 О 7» \ WILEY \ Wiley Publishing, Inc. Professional SlickEdif John Hurst IC..T...L i 1 8 О 7» \ WILEY \! 2 0 0 7 " > Wiley Publishing, Inc. Acknowledgments Introduction xiii xxv Part I: Getting Started with SiickEdit Chapter 1: Introducing

More information

X-Trade Brokers Dom Maklerski S.A. XTB Expert Builder. Tutorial. Michał Zabielski 2010-08-05

X-Trade Brokers Dom Maklerski S.A. XTB Expert Builder. Tutorial. Michał Zabielski 2010-08-05 X-Trade Brokers Dom Maklerski S.A. XTB Expert Builder Tutorial Michał Zabielski 2010-08-05 Table of Contents Installation...3 Legal notification...7 Initial adjustments / Preferences...8 Language...8 Platform

More information

ITP 101 Project 3 - Dreamweaver

ITP 101 Project 3 - Dreamweaver ITP 101 Project 3 - Dreamweaver Project Objectives You will also learn how to make a website outlining your company s products, location, and contact info. Project Details USC provides its students with

More information

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

More information

SAS IT Resource Management 3.2

SAS IT Resource Management 3.2 SAS IT Resource Management 3.2 Reporting Guide Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc 2011. SAS IT Resource Management 3.2:

More information

Paper FF-014. Tips for Moving to SAS Enterprise Guide on Unix Patricia Hettinger, Consultant, Oak Brook, IL

Paper FF-014. Tips for Moving to SAS Enterprise Guide on Unix Patricia Hettinger, Consultant, Oak Brook, IL Paper FF-014 Tips for Moving to SAS Enterprise Guide on Unix Patricia Hettinger, Consultant, Oak Brook, IL ABSTRACT Many companies are moving to SAS Enterprise Guide, often with just a Unix server. A surprising

More information

Getting Started with Access 2007

Getting Started with Access 2007 Getting Started with Access 2007 Table of Contents Getting Started with Access 2007... 1 Plan an Access 2007 Database... 2 Learning Objective... 2 1. Introduction to databases... 2 2. Planning a database...

More information

Word 2007: Basics Learning Guide

Word 2007: Basics Learning Guide Word 2007: Basics Learning Guide Exploring Word At first glance, the new Word 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

MEDILINK ESI 2011+ (R2) How To: Use the Medilink Document Management System. Casey Pittman Developer - APS Medilink 2011/08/12

MEDILINK ESI 2011+ (R2) How To: Use the Medilink Document Management System. Casey Pittman Developer - APS Medilink 2011/08/12 How To: Use the Medilink Document Management System Casey Pittman Developer - APS Medilink 2011/08/12 Table Of Contents Table Of Contents... ii Introduction... 1 Getting Started... 1 1 Document Management

More information

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

More information

Building a Personal Website (Adapted from the Building a Town Website Student Guide 2003 Macromedia, Inc.)

Building a Personal Website (Adapted from the Building a Town Website Student Guide 2003 Macromedia, Inc.) Building a Personal Website (Adapted from the Building a Town Website Student Guide 2003 Macromedia, Inc.) In this project, you will learn the web publishing skills you need to: Plan a website Define a

More information

How To Use Spss

How To Use Spss 1: Introduction to SPSS Objectives Learn about SPSS Open SPSS Review the layout of SPSS Become familiar with Menus and Icons Exit SPSS What is SPSS? SPSS is a Windows based program that can be used to

More information

No restrictions are placed upon the use of this list. Please notify us of any errors or omissions, thank you, support@elmcomputers.

No restrictions are placed upon the use of this list. Please notify us of any errors or omissions, thank you, support@elmcomputers. This list of shortcut key combinations for Microsoft Windows is provided by ELM Computer Systems Inc. and is compiled from information found in various trade journals and internet sites. We cannot guarantee

More information

To Ac&vate Keyboard Apple Systems Preferences. Interna&onal Input Menu install them from an OS X CD Localized Files Switch Keyboards

To Ac&vate Keyboard Apple Systems Preferences. Interna&onal Input Menu install them from an OS X CD Localized Files Switch Keyboards Accents on a Mac Op-on 1: Type the correct sequence for the le8ers you need: acute á, é, í, ó, ú: Op-on + e, then le8er grave è, à, ì, ò, ù: Op-on + `, then le8er circumflex â, ê, î, ô, û: Op-on + i, then

More information

SharePoint 2010. Rollins College 2011

SharePoint 2010. Rollins College 2011 SharePoint 2010 Rollins College 2011 1 2 Contents Overview... 5 Accessing SharePoint... 6 Departmental Site - User Interface... 7 Permissions... 8 Site Actions: Site Administrator... 8 Site Actions: General

More information

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables

More information

Personal Geodatabase 101

Personal Geodatabase 101 Personal Geodatabase 101 There are a variety of file formats that can be used within the ArcGIS software. Two file formats, the shape file and the personal geodatabase were designed to hold geographic

More information

Web Ambassador Training on the CMS

Web Ambassador Training on the CMS Web Ambassador Training on the CMS Learning Objectives Upon completion of this training, participants will be able to: Describe what is a CMS and how to login Upload files and images Organize content Create

More information

Microsoft Access 2010 Overview of Basics

Microsoft Access 2010 Overview of Basics Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create

More information

Tutorial Guide to the IS Unix Service

Tutorial Guide to the IS Unix Service Tutorial Guide to the IS Unix Service The aim of this guide is to help people to start using the facilities available on the Unix and Linux servers managed by Information Services. It refers in particular

More information

Introduction to PASW Statistics 34152-001

Introduction to PASW Statistics 34152-001 Introduction to PASW Statistics 34152-001 V18 02/2010 nm/jdr/mr For more information about SPSS Inc., an IBM Company software products, please visit our Web site at http://www.spss.com or contact: SPSS

More information

How To Use Query Console

How To Use Query Console Query Console User Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Query Console User

More information

Using the GroupWise Client

Using the GroupWise Client Spring 2006 (Our appreciation to Jennifer Sherouse for her assistance in editing and improving this document) Page 1 of 15 What is the GroupWise Client The GroupWise client is a program that installs on

More information

Cisco Networking Academy Program Curriculum Scope & Sequence. Fundamentals of UNIX version 2.0 (July, 2002)

Cisco Networking Academy Program Curriculum Scope & Sequence. Fundamentals of UNIX version 2.0 (July, 2002) Cisco Networking Academy Program Curriculum Scope & Sequence Fundamentals of UNIX version 2.0 (July, 2002) Course Description: Fundamentals of UNIX teaches you how to use the UNIX operating system and

More information

Login: https://ipfw.edu/c Quick Guide for dotcms & Accessibility November 2014 Training: http://ipfw.edu/training

Login: https://ipfw.edu/c Quick Guide for dotcms & Accessibility November 2014 Training: http://ipfw.edu/training dotcms & Accessibility Folders Creating a New Folder Note: All folders showing on menu must have an index page. 1. Right-click the parent folder in which the new folder will reside. 2. Click New > Folder.

More information

Cal Poly Pomona Cascade Server Beginning Web Author Training

Cal Poly Pomona Cascade Server Beginning Web Author Training Cal Poly Pomona Cascade Server Beginning Web Author Training Contents Recommended Browsers for using Cascade... 3 Content Management System Overview... 3 Content Management System Diagram- workflow...

More information

Getting Started with the SAS System Point and Click Approach

Getting Started with the SAS System Point and Click Approach Getting Started with the SAS System Point and Click Approach You are advised to use this document alongside the program. Starting SAS To start SAS click on Start -> Programs -> SAS -> SAS 9.4 (English).

More information

Decision Support AITS University Administration. EDDIE 4.1 User Guide

Decision Support AITS University Administration. EDDIE 4.1 User Guide Decision Support AITS University Administration EDDIE 4.1 User Guide 2 P a g e EDDIE (BI Launch Pad) 4.1 User Guide Contents Introduction to EDDIE... 4 Log into EDDIE... 4 Overview of EDDIE Homepage...

More information

CentralMass DataCommon

CentralMass DataCommon CentralMass DataCommon User Training Guide Welcome to the DataCommon! Whether you are a data novice or an expert researcher, the CentralMass DataCommon can help you get the information you need to learn

More information

Horizon Debt Collect. User s and Administrator s Guide

Horizon Debt Collect. User s and Administrator s Guide Horizon Debt Collect User s and Administrator s Guide Microsoft, Windows, Windows NT, Windows 2000, Windows XP, and SQL Server are registered trademarks of Microsoft Corporation. Sybase is a registered

More information

Most of your tasks in Windows XP will involve working with information

Most of your tasks in Windows XP will involve working with information OFFICE 1 File Management Files and Folders Most of your tasks in Windows XP will involve working with information stored on your computer. This material briefly explains how information is stored in Windows

More information

Introduction to SAS Business Intelligence/Enterprise Guide Alex Dmitrienko, Ph.D., Eli Lilly and Company, Indianapolis, IN

Introduction to SAS Business Intelligence/Enterprise Guide Alex Dmitrienko, Ph.D., Eli Lilly and Company, Indianapolis, IN Paper TS600 Introduction to SAS Business Intelligence/Enterprise Guide Alex Dmitrienko, Ph.D., Eli Lilly and Company, Indianapolis, IN ABSTRACT This paper provides an overview of new SAS Business Intelligence

More information

Stores copies of items you sent to others, by default. Stores items created offline that you want to send the next time you are online

Stores copies of items you sent to others, by default. Stores items created offline that you want to send the next time you are online Outlook Folders: All new messages are stored in Inbox unless rules are created. Stores copies of items you sent to others, by default Stores temporarily deleted items until you permanently delete or retrieve

More information

To change title of module, click on settings

To change title of module, click on settings HTML Module: The most widely used module on the websites. This module is very flexible and is used for inserting text, images, tables, hyperlinks, document downloads, and HTML code. Hover the cursor over

More information

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS Last Edited: 2012-07-09 1 Access to Outlook contacts area... 4 Manage Outlook contacts view... 5 Change the view of Contacts area... 5 Business Cards view... 6

More information

EXST SAS Lab Lab #4: Data input and dataset modifications

EXST SAS Lab Lab #4: Data input and dataset modifications EXST SAS Lab Lab #4: Data input and dataset modifications Objectives 1. Import an EXCEL dataset. 2. Infile an external dataset (CSV file) 3. Concatenate two datasets into one 4. The PLOT statement will

More information

Web Content Management Training Manualv3

Web Content Management Training Manualv3 City & County of San Francisco Powered by Innovation DT City & County of Sa Departme Techno Powered by Innova DEPARTMENT OF TECHNOLOGYDT Web Content Management Training Manualv3 Department of Technology

More information

Outlook Web Access User Guide

Outlook Web Access User Guide Table of Contents Title Page How to login...3 Create a new message/send attachment...5 Remove the reading pane...10 Calendar functions...11 Distribution lists...11 Contacts list...13 Tasks...18 Options...19

More information

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë 14.1 bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë bî~äì~íáåö=oéñäéåíáçå=ñçê=emi=rkfui=~åç=lééåsjp=eçëíë This guide walks you quickly through key Reflection features. It covers: Getting Connected

More information

Analyzing the Server Log

Analyzing the Server Log 87 CHAPTER 7 Analyzing the Server Log Audience 87 Introduction 87 Starting the Server Log 88 Using the Server Log Analysis Tools 88 Customizing the Programs 89 Executing the Driver Program 89 About the

More information

OvidSP Quick Reference Guide

OvidSP Quick Reference Guide OvidSP Quick Reference Guide Opening an OvidSP Session Open the OvidSP URL with a browser or Follow a link on a web page or Use Athens or Shibboleth access Select Resources to Search In the Select Resource(s)

More information

Introduction. Chapter 1

Introduction. Chapter 1 Chapter 1 Introduction MATLAB (Matrix laboratory) is an interactive software system for numerical computations and graphics. As the name suggests, MATLAB is especially designed for matrix computations:

More information

STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc.

STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc. STATGRAPHICS Online Statistical Analysis and Data Visualization System Revised 6/21/2012 Copyright 2012 by StatPoint Technologies, Inc. All rights reserved. Table of Contents Introduction... 1 Chapter

More information

9.1 SAS/ACCESS. Interface to SAP BW. User s Guide

9.1 SAS/ACCESS. Interface to SAP BW. User s Guide SAS/ACCESS 9.1 Interface to SAP BW User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2004. SAS/ACCESS 9.1 Interface to SAP BW: User s Guide. Cary, NC: SAS

More information

E-mail Settings 1 September 2015

E-mail Settings 1 September 2015 Training Notes 1 September 2015 PrintBoss can be configured to e-mail the documents it processes as PDF attachments. There are limitations to embedding documents in standard e-mails. PrintBoss solves these

More information

Using This Reference Manual Chapter 1 to Issue ACL Commands

Using This Reference Manual Chapter 1 to Issue ACL Commands Copyright 1998 ACL Services Ltd. All rights reserved No part of this manual may be reproduced or transmitted in any form by any means, electronic or mechanical, including photocopying and recording, information

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Oracle WebCenter Forms Recognition/Capture Integration Guide 11g Release 1 (11.1.1) E49971-01 November 2013 Oracle WebCenter Forms Recognition is a learning-based solution that

More information

Using Windows XP and File Management Handout (Staff)

Using Windows XP and File Management Handout (Staff) Using Windows XP and File Management Handout (Staff) The XP Interface Logging on to your computer. Logging in on campus. Analogy of a safe. Login screen Domains - FFLDU, Fairfield, Local Machine, Prep

More information

Introduction to ROOT and data analysis

Introduction to ROOT and data analysis Introduction to ROOT and data analysis What is ROOT? Widely used in the online/offline data analyses in particle and nuclear physics Developed for the LHC experiments in CERN (root.cern.ch) Based on Object

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information