Introduction to SAS Programs. Objectives. SAS Programs. Sample Data. File Containing Data: boxhunter.dat

Size: px
Start display at page:

Download "Introduction to SAS Programs. Objectives. SAS Programs. Sample Data. File Containing Data: boxhunter.dat"

Transcription

1 Introduction to Statistical omputing SS, Minitab, and xcel Simple ata ntry and asic Reporting 1.1 Introduction to SS Programs 1.2 Introduction to Minitab Programs 1.3 Introduction to xcel Spreadsheets 1.4 asic Instructions for SS, Minitab and xcel 1.5 MO xcel 1.6 MO Minitab 1.7 MO SS Introduction to SS Programs 1 Objectives State the components of a SS program and how SS programs are executed in the windowing environment. efine the components of a SS data set. efine a SS variable, missing values and a SS date values. State the naming conventions for SS data sets and variables. xplain SS syntax rules. Investigate a SS data set using the ONTNTS and PRINT procedures. SS Programs SS program is a sequence of steps that the user submits for execution. Raw Raw ata SS ata Set T steps are typically used to create SS data sets. T Step SS ata Set PRO Step Report PRO steps are typically used to process SS data sets (that is, generate reports and graphs, edit data, and sort data). 3 4 Sample ata Operator File ontaining ata: boxhunter.dat ay of Week

2 Sample SS Program %let ddirect = c:/my data; data one; infile "&ddirect/boxhunter.dat delimiter='09'x; input weekday $ operator $ response; T Step Step oundaries SS steps begin with a T statement, or, PRO statement. SS detects the end of a step when it encounters 7 Options nocenter; proc print data=one; proc means; class operator; var response; PRO Steps 8 a RUN statement (for most steps) a QUIT statement (for some procedures) the beginning of another step (T statement or PRO statement). Step oundaries %let ddirect = c:/my data; data one; infile "&ddirect/boxhunter.dat delimiter='09'x; input weekday $ operator $ response; SS Windowing nvironment Interactive windows enable you to interface with SS. Options nocenter; proc print data=one; 9 proc means; class operator; var response; 10 Submitting a SS Program When you execute a SS program, the output generated by SS is divided into two major parts: SS log contains information about the processing of the SS program, including any warning and error messages. SS output contains reports generated by SS procedures and T steps. SS Log NOT: opyright (c) by SS Institute Inc., ary, N, US. NOT: SS (r) Proprietary Software Release 8.2 (TS2M0) Licensed to ROHSTR INSTITUT OF THNOLOGY, Site NOT: This session is executing on the WIN_PRO platform. NOT: SS initialization used: real time 4.02 seconds cpu time 0.66 seconds 1 %let ddirect = c:/my data; 2 data one; 3 infile "&ddirect/boxhunter.dat delimiter='09'x; 4 input weekday $ operator $ response; 5 NOT: The infile "c:/my data/boxhunter.dat" is: File Name=c:\my data\boxhunter.dat, RFM=V,LRL=256 NOT: 15 records were read from the infile "c:/my data/boxhunter.dat". The minimum record length was 12. The maximum record length was 16. NOT: The data set WORK.ON has 15 observations and 3 variables. NOT: T statement used: real time 0.12 seconds cpu time 0.04 seconds

3 SS Output PRO PRINT The SS System Obs weekday operator response Wednesda Wednesda Wednesda Wednesda Wednesda SS Output - PRO MNS The SS System The MNS Procedure nalysis Variable : response N operator Obs N Mean Std ev Minimum Maximum ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ SS ata Sets SS ata Sets ata ntry escriptor Portion xternal File onversion Process SS ata Set Other Software Files ata Portion SS data sets have a descriptor portion and a data portion. escriptor Portion ata Portion General data set information * data set name * data set label * date/time created * storage information * number of observations Information for each variable * Name * Type * Length * Position * Format * Informat * Label rowsing the escriptor Portion The descriptor portion of a SS data set contains general information about the SS data set (such as data set name and number of observations) variable attributes (name, type, length, position, informat, format, label). The ONTNTS procedure displays the descriptor portion of a SS data set. rowsing the escriptor Portion General form of the ONTNTS procedure: PRO ONTNTS T=SS-data-set; RUN; xample: proc contents data=one; c02s3d1 3

4 SS Variable Values There are two types of variables: character contain any value: letters, numbers, special characters, and blanks. haracter values are stored with a length of 1 to 32,767 bytes. One byte equals one character. The default length for character variables is 8 bytes. SS ata Set and Variable Names SS names can be 32 characters long. can be uppercase, lowercase, or mixed-case. must start with a letter or underscore. Subsequent characters can be letters, underscores, or numeric digits. numeric stored as floating point numbers in 8 bytes of storage by default. ight bytes of floating point storage provide space for 16 or 17 significant digits. You are not restricted to 8 digits Valid SS Names Select the default valid SS names. data5mon 5monthsdata data#5 five months data fivemonthsdata Valid SS Names Select the default valid SS names. data5mon 5monthsdata data#5 five months data fivemonthsdata SS ate Values SS stores date values as numeric values. SS date value is stored as the number of days between January 1, 1960, and a specific date. Missing ata Values value must exist for every variable for each observation. Missing values are valid values. LastName FirstName JobTitle Salary 23 01JN JN JN1961 store display 01/01/ /01/ /01/ TORRS JN Pilot LNGKMM SRH Mechanic SMITH MIHL Mechanic. WGSHL NJ Pilot TORMON JOHN character missing value is displayed as a blank. numeric missing value is displayed as a period. 4

5 rowsing the ata Portion The PRINT procedure displays the data portion of a SS data set. y default, PRO PRINT displays all observations all variables an Obs column on the left side. rowsing the ata Portion General form of the PRINT procedure: PRO PRINT T=SS-data-set; RUN; xample: proc print data=one; SS ata Set Terminology SS documentation and text in the SS windowing environment use the following terms interchangeably: SS ata Set Variable Observation SS Table olumn Row SS Syntax Rules SS statements usually begin with an identifying keyword always end with a semicolon. proc print data=work.staff; class JobTitle; var Salary; 29 SS Syntax Rules SS statements are free-format. One or more blanks or special characters can be used to separate words. They can begin and end in any column. single statement can span multiple lines. Several statements can be on the same line. Unconventional Spacing class JobTitle; var Salary; 30 SS Syntax Rules SS statements are free-format. One or more blanks or special characters can be used to separate words. They can begin and end in any column. single statement can span multiple lines. Several statements can be on the same line. Unconventional Spacing class JobTitle; var Salary; 5

6 SS Syntax Rules SS Syntax Rules 31 SS statements are free-format. One or more blanks or special characters can be used to separate words. They can begin and end in any column. single statement can span multiple lines. Several statements can be on the same line. Unconventional Spacing class JobTitle; var Salary; 32 SS statements are free-format. One or more blanks or special characters can be used to separate words. They can begin and end in any column. single statement can span multiple lines. Several statements can be on the same line. Unconventional Spacing class JobTitle; var Salary; SS Syntax Rules... SS Syntax Rules SS statements are free-format. One or more blanks or special characters can be used to separate words. They can begin and end in any column. single statement can span multiple lines. Several statements can be on the same line. Unconventional Spacing class JobTitle; var Salary; 34 SS statements are free-format. They can begin and end in any column. One or more blanks or special characters can be used to separate words. single statement can span multiple lines. Several statements can be on the same line. Unconventional Spacing class JobTitle; var Salary; 35 SS Syntax Rules Good spacing makes the program easier to read. onventional Spacing proc print data=work.staff; class JobTitle; var Salary; 36 SS omments Type /* to begin a comment. Type your comment text. Type */ to end the comment. /* reate work.staff data set */ /* Produce listing report of work.staff */ proc print data=work.staff; 6

7 ommon Syntax rrors Syntax errors include misspelled keywords (PRO spelled as PRO) missing or invalid punctuation (missing ;) invalid options (misspelled, or wrong options for a given procedure) Recall a Submitted Program Program statements accumulate in a recall buffer each time you issue a SUMIT (F3) command. Issue the RLL (F4) command once to recall the most recently submitted program. Issue the KYS (F9) command to tell you what functions have been assigned to which key combinations Save Your Program Use the FIL command with the appropriate file naming convention for your operating environment. Windows: FIL 'c:\workshop\winsas\prog1\myprog.sas' You can also use the FIL/SV or FIL/SV S menu options in the SS display manager. Summary The two main types of steps in SS programs are T steps and PRO steps. T steps are primarily used for data management tasks, while PRO steps contain various procedures. Some special statements, like the OPTIONS statement, may exist outside of the PRO and T steps. The end of a PRO or T step is detected when a RUN or QUIT statement is encountered, or another PRO or T statement is encountered. SS programs are generally executed from a SS Windowing environment. When SS programs are executed, a SS LOG and a SS LISTING is created Summary SS variables are either numeric, or character. missing value in SS is a period if the variable is numeric, a blank if the variable is character. ates in SS are numeric variables, but require special formatting to be displayed properly. SS statements end with a semicolon. Use comments liberally to document SS programs. Introduction to Minitab Programs 41 7

8 Objectives State the components of a Minitab program. escribe how Minitab programs are executed in the windowing environment. efine the components of a Minitab worksheet. efine a Minitab variable. Identify a missing value and a Minitab date value. State the naming conventions for Minitab variables. xplain Minitab syntax rules. Investigate a Minitab Project using the Project Manager Window. Minitab Programs Minitab program is a sequence of command that the user types into the command window, or are entered into the command window via the pull-down menus. Raw Raw ata MNIP and L menu commands are used to create and modify data. MNIP and and L Minitab Worksheet STT and and GRPH Report Minitab Worksheet STT and GRPH menu commands are used to create numerical reports and graphical displays Sample ata Operator File ontaining ata: boxhunter.dat ay of Week Minitab Program Read ":\My ata\boxhunter.dat" c1-c3; Tab; NoNames; lpha 1 2; ecimal ".". Name 1='workday'. Name 2='operator'. Name 3='response'. Print 1-3. escribe 3; y 2. * See also: FIL/OPN WORKSHT Minitab Windowing nvironment Interactive windows enable you to interface with Minitab

9 xecuting a Minitab Program You may execute a Minitab program in three different ways: 1. use the XUT command in the SSSION window (stored as filename.mtb), 2. type the commands interactively in the SSSION window, or, 3. use the pull-down menus to generate the commands. Minitab Session Results MT > xecute ":\ocuments and Settings\smleqa.MIN\My ocuments\ourses\742\ (fall)\class1sample1.mtb" 1. xecuting from file: :\ocuments and Settings\smleqa.MIN\My ocuments\ourses\742\ (fall)\class1sample1.mtb ntering data from file: :\My ata\boxhunter.dat 15 rows read. ata isplay Row workday operator response escriptive Statistics: response by operator Variable operator N Mean Median TrMean Stev response Variable operator S Mean Minimum Maximum Q1 Q3 response PRINT Output Row workday operator response SRI Output escriptive Statistics: response by operator Variable operator N Mean Median TrMean Stev response Variable operator S Mean Minimum Maximum Q1 Q3 response Minitab ata Sets Minitab Text ata Rules for text data include: olumns onstants Worksheet 1 Text data in a column may be up to 80 characters long. 2 You may use any characters (letters, numbers, punctuation symbols, blanks). 3 No column can contain both text and numeric data: Minitab treats numbers appearing in an text column (as in a street address) as text characters. Matrices

10 Minitab Numeric ata Minitab stores and computes numbers in double precision, which means that numbers can have up to 15 or 16 digits (depending on the number) without round-off error. Minitab Variable Names Minitab Names cannot be longer than 31 characters begin or end with a blank include the symbol or # start with or consist entirely of the symbol * be repeated: you cannot use the same name for two variables (columns, stored constants or matrices) in the same worksheet Note: names are assigned using: NM 1 = varname Valid Minitab Names Select the default valid Minitab names. data5mon 5monthsdata data#5 five months data fivemonthsdata Minitab ate Values Minitab stores date values as numeric values. Minitab date value is stored as the number of days between Midnight, ecember 30, 1899, and a specific date store display 12/30/ /30/ /30/ Missing ata Values value must exist for every variable for each observation. Missing values are valid values. LastName FirstName JobTitle Salary TORRS JN Pilot LNGKMM SRH Mechanic SMITH MIHL Mechanic * WGSHL NJ Pilot TORMON JOHN rowsing the ata Portion The PRINT command displays the data portion of a Minitab worksheet. y default, PRINT displays all observations only the variables listed vertically, with a Row column on the left side (if more than one column is printed) horizontally (if only one column is printed) 59 character missing value is displayed as a blank. numeric missing value is displayed as a asterisk

11 Minitab ata Set Terminology Minitab Syntax Rules Minitab documentation uses the following terms interchangeably: Minitab statements usually begin with an identifying keyword 61 ata Variable Observation Worksheet olumn Row 62 end with a period (a carriage return implies a period). Read ":\My ata\boxhunter.dat" c1-c3; Tab; NoNames; lpha 1 2; ecimal ".". Name 1='workday'. Name 2='operator'. Name 3='response'. Print 1-3. escribe 3; y 2. Minitab Syntax Rules Minitab Syntax Rules One or more blanks can separate words. ommands can begin and end in any column. n ampersand (&) is used to signal that a statement is to continue onto the next line Only one statement can be on the same line. Read ":\My ata\boxhunter.dat" c1-c3; Tab; NoNames; lpha 1 2; ecimal ".". Name 1='workday 2='operator & 3='response'. Print 1-3. escribe 3; y 2. Good spacing makes the program easier to read. Text that follows a # is considered a comment. Use comments to make the program more readable. Read ":\My ata\boxhunter.dat" c1-c3; Tab; # indicates that the file is tab delimited NoNames; # names are not the first line of file lpha 1 2; # first two columns are text variables ecimal ".". Name 1='workday 2='operator & # continuation 3='response'. Print 1-3. # let s do some summary statistics escribe 3; y ommon Syntax rrors Syntax errors include misspelled keywords missing or invalid punctuation invalid options. Save Your Project or Worksheet Use the FIL/ SV PROJT command to save everything! Use the FIL/ SV URRNT WORKSHT command to save individual worksheets! Note: the worksheet can be saved in formats other than the Minitab format! If the SSSION window is in front, you can also save that window separately, or cut and paste into other applications parts of the session, or graph, windows

12 Minitab Project Manager Minitab Project Manager Session an indexed session window History a record of all Minitab commands executed Graphs the graphs that have been created Report Pad a place to paste results and write notes Worksheet olumns 1, 2, etc. onstants K1, K2, etc. Matrices M1, M2, etc. Note: the INFO command summarizes information about the current worksheet Summary Minitab variables are either numeric, or character, or dates. missing value in Minitab is an asterisk if the variable is numeric, a blank if the variable is character. Minitab statements end with a period (.). Minitab statements end at the end of the line, unless a continuation character (&) is used. semicolon (;) is used in Minitab to indicate that a subcommand is to follow on the next line. Only one Minitab command may occupy each line. Use comments liberally to document Minitab programs. Introduction to xcel Spreadsheets 69 Objectives State the components of a xcel Workbook. escribe how xcel can be used to get statistical summaries. efine the components of a xcel Workbooks. escribe type of data allowed in cells. xcel Workbook ells Worksheets Workbook

13 Sample ata ay of Week Operator xcel Worksheet Sequence of Steps: 1.Use FIL/OPN to get data in 2.Use INSRT/ROWS to make room for variable names. 3.Type variable names into appropriate cells. 4.Highlight all three columns. 5.Use T/PivotTable to create table of averages, repeat for other statistics xcel ata Worksheet Weekday Operator Response xcel Workbooks Workbooks contain worksheets Worksheets contain ells ells contain data, or functions, or references to other cells xcel Text ata and Variable Names No obvious rules for enter text data, or for that matter, variable names (since they are usually just text cells) xcel Numeric ata 15-digit limit Regardless of the number of digits displayed, xcel stores numbers with up to 15 digits of precision. If a number contains more than 15 significant digits, xcel converts the extra digits to zeros (0). Note: although xcel stores numbers in about the same precision as SS and Minitab, it has some other numerical deficiencies at will be demonstrated in the homework assignment. 78 xcel ate Values xcel stores date values as numeric values. n xcel date value is stored as the number of days between Midnight, ecember 30, 1899, and a specific date store display 12/30/ /30/ /30/

14 Save Your Workbook or Worksheet Use the FIL/ SV to save the current workbook. Note: the individual worksheets can be saved in formats other than the xcel workbook format! Summary xcel organizes cells into worksheets, and worksheets into workbooks. ata and functions are entered into cells. xcel cells may contain numeric, or character values, functions, or a number of other constructs. There is no explicit missing value in xcel. ates in xcel are numeric variables, but may require special formatting to be displayed properly. omments can be inserted into cells to document the worksheet xample ata Suppose you are measuring the one dimension of a number of manufactured parts which were all designed to be identically 13 cm. Of course, with manufacturing variability, the parts are not exactly 13 cm. Here are the results from a sample of 16 parts. MO: SS, Minitab, and xcel ased on this sample, what would you estimate the mean and standard deviation of the distribution of parts to be? xpress your answer in millimeters. ata are saved in length.txt 82 Getting In and Getting Out Microsoft xcel ouble-click on Icon File/xit Minitab ouble-click on Icon File/xit SS ouble-click on Icon File/xit Interfaces xecuting ommands Microsoft xcel live Worksheets are edited directly Minitab - semi-live Worksheets are edited via commands executed in the session window SS not as live atasets is edited via programs submitted from the program editor window

15 ntering Simple ata Microsoft xcel File/New/Workbook (contains Worksheets) Type data in columns File/Save s/ (in any folder) Minitab File/New/Minitab Worksheet Type data in columns File/Save urrent Worksheet s/ (in any folder) SS Use the sample program as a template, modify it to work with the length data type it into the editor Submit, then look at the Output Window (Re) isplaying ata Microsoft xcel File/Print Minitab ommand: PRINT 1. (current worksheet, first column, default formats) SS Procedure: PRO PRINT; (current dataset, all variables, default formats) reating a New Variable Microsoft xcel =1+1 assignment statement typed directly in each cell Minitab LT 2=1+1 assignment statement in session window for each new column SS newvar = oldvar + 1; added to the SS data step and submitted via the program editor window SUMMRY SV your data! SV your programs! Use the HLP commands! Use non-generic variable names and labels! Use comments to document programs! Use indentation and capitalization to make programs easy to read! e aware of display formatting and data storage issues!

Introduction to SAS Statistical Package

Introduction to SAS Statistical Package Instructor: Introduction to SAS Statistical Package Biostatistics 140.632 Lecture 1 Lucy Meoni lmeoni@jhmi.edu Teaching Assistant : Sorina Eftim seftim@jhsph.edu Lecture/Lab: Room 3017 WEB site: www.biostat.jhsph.edu/bstcourse/bio632/default.htm

More information

STAT 7000: Experimental Statistics I

STAT 7000: Experimental Statistics I STAT 7000: Experimental Statistics I 2. A Short SAS Tutorial Peng Zeng Department of Mathematics and Statistics Auburn University Fall 2009 Peng Zeng (Auburn University) STAT 7000 Lecture Notes Fall 2009

More information

Chapter 1 The DATA Step

Chapter 1 The DATA Step Chapter 1 The DATA Step 1.1 Structure of SAS Programs...1-3 1.2 SAS Data Sets... 1-12 1.3 Creating a Permanent SAS Data Set... 1-18 1.4 Writing a SAS DATA Step... 1-24 1.5 Creating a DATA Step View...

More information

INTRODUCTION 1 AND REVIEW

INTRODUCTION 1 AND REVIEW INTRODUTION 1 AND REVIEW hapter SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN. Programming: Advanced Objectives You will learn: Program structure. Program statements. Datatypes. Pointers. Arrays. Structures.

More information

Lecture 1 Getting Started with SAS

Lecture 1 Getting Started with SAS SAS for Data Management, Analysis, and Reporting Lecture 1 Getting Started with SAS Portions reproduced with permission of SAS Institute Inc., Cary, NC, USA Goals of the course To provide skills required

More information

Using an ICPSR set-up file to create a SAS dataset

Using an ICPSR set-up file to create a SAS dataset Using an ICPSR set-up file to create a SAS dataset Name library and raw data files. From the Start menu, launch SAS, and in the Editor program, write the codes to create and name a folder in the SAS permanent

More information

Chapter 2 The SAS Environment

Chapter 2 The SAS Environment Chapter 2 The SAS Environment Abstract In this chapter, we begin to become familiar with the basic SAS working environment. We introduce the basic 3-screen layout, how to navigate the SAS Explorer window,

More information

STAT:5400 Computing in Statistics

STAT:5400 Computing in Statistics STAT:5400 Computing in Statistics Introduction to SAS Lecture 18 Oct 12, 2015 Kate Cowles 374 SH, 335-0727 kate-cowles@uiowaedu SAS SAS is the statistical software package most commonly used in business,

More information

Tab-Delimited File and Compound Objects - Documents, Postcards, and Cubes. (Not Monographs)

Tab-Delimited File and Compound Objects - Documents, Postcards, and Cubes. (Not Monographs) 1" Tab-Delimited File and Compound Objects - Documents, Postcards, and Cubes (Not Monographs) See Help Sheet: Tab-Delimited File and Compound Object - Monograph Content "2" Page 4: Why use Tab-delimited

More information

E D T 3 2 E D T 3. Slide 1

E D T 3 2 E D T 3. Slide 1 Slide Spreadsheets Using Microsoft xcel Reminder: We had covered spreadsheets very briefly when we discussed the different types of software in a previous presentation. Spreadsheets are effective tools

More information

Getting Started With Excel

Getting Started With Excel Getting Started With xcel This chapter will familiarize you with various basic features of xcel. Specific features which you need to solve a problem will be introduced as the need arises. When working

More information

Epidemiology Principles of Biostatistics Chapter 3. Introduction to SAS. John Koval

Epidemiology Principles of Biostatistics Chapter 3. Introduction to SAS. John Koval Epidemiology 9509 Principles of Biostatistics Chapter 3 John Koval Department of Epidemiology and Biostatistics University of Western Ontario What we will do today We will learn to use use SAS to 1. read

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

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

Lab #1: Introduction to Basic SAS Operations

Lab #1: Introduction to Basic SAS Operations Lab #1: Introduction to Basic SAS Operations Getting Started: OVERVIEW OF SAS (access lab pages at http://www.stat.lsu.edu/exstlab/) There are several ways to open the SAS program. You may have a SAS icon

More information

GiftWorks Import Guide Page 2

GiftWorks Import Guide Page 2 Import Guide Introduction... 2 GiftWorks Import Services... 3 Import Sources... 4 Preparing for Import... 9 Importing and Matching to Existing Donors... 11 Handling Receipting of Imported Donations...

More information

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Basic Topics: Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Review ribbon terminology such as tabs, groups and commands Navigate a worksheet, workbook, and multiple workbooks Prepare

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

IT 374 C# and Applications/ IT695 C# Data Structures

IT 374 C# and Applications/ IT695 C# Data Structures IT 374 C# and Applications/ IT695 C# Data Structures Module 2.1: Introduction to C# App Programming Xianrong (Shawn) Zheng Spring 2017 1 Outline Introduction Creating a Simple App String Interpolation

More information

SAS Training Spring 2006

SAS Training Spring 2006 SAS Training Spring 2006 Coxe/Maner/Aiken Introduction to SAS: This is what SAS looks like when you first open it: There is a Log window on top; this will let you know what SAS is doing and if SAS encountered

More information

Introducing Simple Macros

Introducing Simple Macros 28 Introducing Simple Macros Macros Overview, 28-2 The Structure of a Global Macro, 28-4 Example of a Global Macro, 28-5 Creating a Global Macro, 28-6 Invoking a Global Macro, 28-7 Adding Control Statements,

More information

Objectives Reading SAS Data Sets and Creating Variables Reading a SAS Data Set Reading a SAS Data Set onboard ia.dfwlax FirstClass Economy

Objectives Reading SAS Data Sets and Creating Variables Reading a SAS Data Set Reading a SAS Data Set onboard ia.dfwlax FirstClass Economy Reading SAS Data Sets and Creating Variables Objectives Create a SAS data set using another SAS data set as input. Create SAS variables. Use operators and SAS functions to manipulate data values. Control

More information

12/22/11. Java How to Program, 9/e. Help you get started with Eclipse and NetBeans integrated development environments.

12/22/11. Java How to Program, 9/e. Help you get started with Eclipse and NetBeans integrated development environments. Java How to Program, 9/e Education, Inc. All Rights Reserved. } Java application programming } Use tools from the JDK to compile and run programs. } Videos at www.deitel.com/books/jhtp9/ Help you get started

More information

SAS PROGRAMMING AND APPLICATIONS (STAT 5110/6110): FALL 2015 Module 2

SAS PROGRAMMING AND APPLICATIONS (STAT 5110/6110): FALL 2015 Module 2 SAS PROGRAMMING AND APPLICATIONS (STAT 5110/6110): FALL 2015 Department of MathemaGcs and StaGsGcs Phone: 4-3620 Office: Parker 364- A E- mail: carpedm@auburn.edu Web: hup://www.auburn.edu/~carpedm/stat6110

More information

Managing User Data in Bulk via CSV BSC Health & Safety e-learning Platform

Managing User Data in Bulk via CSV BSC Health & Safety e-learning Platform Managing User Data in Bulk via CSV BSC Health & Safety e-learning Platform Contents Introduction... 1 Creating Accounts... 1 Step One: Creating the CSV file... 1 Step Two: Uploading your data... 4 Updating

More information

Econ Stata Tutorial I: Reading, Organizing and Describing Data. Sanjaya DeSilva

Econ Stata Tutorial I: Reading, Organizing and Describing Data. Sanjaya DeSilva Econ 329 - Stata Tutorial I: Reading, Organizing and Describing Data Sanjaya DeSilva September 8, 2008 1 Basics When you open Stata, you will see four windows. 1. The Results window list all the commands

More information

User Manual Mail Merge

User Manual Mail Merge User Manual Mail Merge Version: 1.0 Mail Merge Date: 27-08-2013 How to print letters using Mail Merge You can use Mail Merge to create a series of documents, such as a standard letter that you want to

More information

Making an entry into the CIS Payments workbook

Making an entry into the CIS Payments workbook Making an entry into the CIS Payments workbook By now you should have carried out the CIS Payments workbook Setup. If you have not done so you will need to do this before you can proceed. When you have

More information

TYPES OF VARIABLES, STRUCTURE OF DATASETS, AND BASIC STATA LAYOUT

TYPES OF VARIABLES, STRUCTURE OF DATASETS, AND BASIC STATA LAYOUT PRIMER FOR ACS OUTCOMES RESEARCH COURSE: TYPES OF VARIABLES, STRUCTURE OF DATASETS, AND BASIC STATA LAYOUT STEP 1: Install STATA statistical software. STEP 2: Read through this primer and complete the

More information

GETTING STARTED WITH MINITAB INTRODUCTION TO MINITAB STATISTICAL SOFTWARE

GETTING STARTED WITH MINITAB INTRODUCTION TO MINITAB STATISTICAL SOFTWARE Six Sigma Quality Concepts & Cases Volume I STATISTICAL TOOLS IN SIX SIGMA DMAIC PROCESS WITH MINITAB APPLICATIONS CHAPTER 2 GETTING STARTED WITH MINITAB INTRODUCTION TO MINITAB STATISTICAL SOFTWARE Amar

More information

Introduction to Microsoft Excel 2007

Introduction to Microsoft Excel 2007 Introduction to Microsoft Excel 2007 Microsoft Excel is a very powerful tool for you to use for numeric computations and analysis. Excel can also function as a simple database but that is another class.

More information

Excel Introduction to Excel Databases & Data Tables

Excel Introduction to Excel Databases & Data Tables Creating an Excel Database Key field: Each record should have some field(s) that helps to uniquely identify them, put these fields at the start of your database. In an Excel database each column is a field

More information

Introduction to Stata - Session 2

Introduction to Stata - Session 2 Introduction to Stata - Session 2 Siv-Elisabeth Skjelbred ECON 3150/4150, UiO January 26, 2016 1 / 29 Before we start Download auto.dta, auto.csv from course home page and save to your stata course folder.

More information

Contents. Overview How SAS processes programs Compilation phase Execution phase Debugging a DATA step Testing your programs

Contents. Overview How SAS processes programs Compilation phase Execution phase Debugging a DATA step Testing your programs SAS Data Step Contents Overview How SAS processes programs Compilation phase Execution phase Debugging a DATA step Testing your programs 2 Overview Introduction This section teaches you what happens "behind

More information

Technology Webinar. Integrating Spreadsheets into Core Curriculum. Part 1

Technology Webinar. Integrating Spreadsheets into Core Curriculum. Part 1 Technology Webinar Integrating Spreadsheets into Core Curriculum Part 1 Online Workshop Adobe Connect overview Core curriculum TEKS Spreadsheet basics Cell cell name Column and row Entering data into a

More information

Opening a Data File in SPSS. Defining Variables in SPSS

Opening a Data File in SPSS. Defining Variables in SPSS Opening a Data File in SPSS To open an existing SPSS file: 1. Click File Open Data. Go to the appropriate directory and find the name of the appropriate file. SPSS defaults to opening SPSS data files with

More information

You can record macros to automate tedious

You can record macros to automate tedious Introduction to Macros You can record macros to automate tedious and repetitive tasks in Excel without writing programming code directly. Macros are efficiency tools that enable you to perform repetitive

More information

Civil Engineering Computation

Civil Engineering Computation Civil Engineering Computation First Steps in VBA Homework Evaluation 2 1 Homework Evaluation 3 Based on this rubric, you may resubmit Homework 1 and Homework 2 (along with today s homework) by next Monday

More information

2. create the workbook file

2. create the workbook file 2. create the workbook file Excel documents are called workbook files. A workbook can include multiple sheets of information. Excel supports two kinds of sheets for working with data: Worksheets, which

More information

Working with Excel CHAPTER 1

Working with Excel CHAPTER 1 CHAPTER 1 Working with Excel You use Microsoft Excel to create spreadsheets, which are documents that enable you to manipulate numbers and formulas to quickly create powerful mathematical, financial, and

More information

Contents. Session 2. COMPUTER APPLICATIONS Excel Spreadsheets

Contents. Session 2. COMPUTER APPLICATIONS Excel Spreadsheets Session 2 Contents Contents... 23 Cell Formats cont..... 24 Worksheet Views... 24 Naming Conventions... 25 Copy / Duplicate Worksheets... 27 Entering Formula & Functions... 28 Page - 23 Cell Formats cont..

More information

Introduction to Minitab 1

Introduction to Minitab 1 Introduction to Minitab 1 We begin by first starting Minitab. You may choose to either 1. click on the Minitab icon in the corner of your screen 2. go to the lower left and hit Start, then from All Programs,

More information

Introductory SAS example

Introductory SAS example Introductory SAS example STAT:5201 1 Introduction SAS is a command-driven statistical package; you enter statements in SAS s language, submit them to SAS, and get output. A fairly friendly user interface

More information

Microsoft Excel Level 2

Microsoft Excel Level 2 Microsoft Excel Level 2 Table of Contents Chapter 1 Working with Excel Templates... 5 What is a Template?... 5 I. Opening a Template... 5 II. Using a Template... 5 III. Creating a Template... 6 Chapter

More information

So, Your Data are in Excel! Ed Heaton, Westat

So, Your Data are in Excel! Ed Heaton, Westat Paper AD02_05 So, Your Data are in Excel! Ed Heaton, Westat Abstract You say your customer sent you the data in an Excel workbook. Well then, I guess you'll have to work with it. This paper will discuss

More information

Excel VBA. Microsoft Excel is an extremely powerful tool that you can use to manipulate, analyze, and present data.

Excel VBA. Microsoft Excel is an extremely powerful tool that you can use to manipulate, analyze, and present data. Excel VBA WHAT IS VBA AND WHY WE USE IT Microsoft Excel is an extremely powerful tool that you can use to manipulate, analyze, and present data. Sometimes though, despite the rich set of features in the

More information

Chapter 2: Getting Data Into SAS

Chapter 2: Getting Data Into SAS Chapter 2: Getting Data Into SAS Data stored in many different forms/formats. Four categories of ways to read in data. 1. Entering data directly through keyboard 2. Creating SAS data sets from raw data

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

Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae

Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae Week 9 Using lookup functions Microsoft Excel is essentially a spreadsheet tool, while Microsoft Access is a database tool.

More information

An Introduction to Stata Exercise 1

An Introduction to Stata Exercise 1 An Introduction to Stata Exercise 1 Anna Folke Larsen, September 2016 1 Table of Contents 1 Introduction... 1 2 Initial options... 3 3 Reading a data set from a spreadsheet... 5 4 Descriptive statistics...

More information

DSCI 325: Handout 2 Getting Data into SAS Spring 2017

DSCI 325: Handout 2 Getting Data into SAS Spring 2017 DSCI 325: Handout 2 Getting Data into SAS Spring 2017 Data sets come in many different formats. In some situations, data sets are stored on paper (e.g., surveys) and other times data are stored in huge

More information

Statistics 528: Minitab Handout 1

Statistics 528: Minitab Handout 1 Statistics 528: Minitab Handout 1 Throughout the STAT 528-530 sequence, you will be asked to perform numerous statistical calculations with the aid of the Minitab software package. This handout will get

More information

Intermediate SAS: Working with Data

Intermediate SAS: Working with Data Intermediate SAS: Working with Data OIT Technical Support Services 293-4444 oithelp@mail.wvu.edu oit.wvu.edu/training/classmat/sas/ Table of Contents Getting set up for the Intermediate SAS workshop:...

More information

ECLT 5810 SAS Programming - Introduction

ECLT 5810 SAS Programming - Introduction ECLT 5810 SAS Programming - Introduction Why SAS? Able to process data set(s). Easy to handle multiple variables. Generate useful basic analysis Summary statistics Graphs Many companies and government

More information

Introduction to SAS Mike Zdeb ( , #1

Introduction to SAS Mike Zdeb ( , #1 Mike Zdeb (402-6479, msz03@albany.edu) #1 (1) INTRODUCTION Once, the acronym SAS actually did stand for Statistical Analysis System. Now, when you use the term SAS, you are referring to a collection of

More information

Maximizing Statistical Interactions Part II: Database Issues Provided by: The Biostatistics Collaboration Center (BCC) at Northwestern University

Maximizing Statistical Interactions Part II: Database Issues Provided by: The Biostatistics Collaboration Center (BCC) at Northwestern University Maximizing Statistical Interactions Part II: Database Issues Provided by: The Biostatistics Collaboration Center (BCC) at Northwestern University While your data tables or spreadsheets may look good to

More information

A Guided Tour Through the SAS Windowing Environment Casey Cantrell, Clarion Consulting, Los Angeles, CA

A Guided Tour Through the SAS Windowing Environment Casey Cantrell, Clarion Consulting, Los Angeles, CA A Guided Tour Through the SAS Windowing Environment Casey Cantrell, Clarion Consulting, Los Angeles, CA ABSTRACT The SAS system running in the Microsoft Windows environment contains a multitude of tools

More information

An Introduction to Stata Part I: Data Management

An Introduction to Stata Part I: Data Management An Introduction to Stata Part I: Data Management Kerry L. Papps 1. Overview These two classes aim to give you the necessary skills to get started using Stata for empirical research. The first class will

More information

Eukleia LMS Tenant administrator guide

Eukleia LMS Tenant administrator guide Eukleia LMS Tenant administrator guide Version 1.1 Date published 4 January 2017 This guide will occasionally be updated. It is advisable not to download a copy, and instead access it from the LMS each

More information

Module 4 : Spreadsheets

Module 4 : Spreadsheets Module 4 : Spreadsheets What is a spreadsheet program? A spreadsheet program allows you to store, organise and analyse information. Applications of spreadsheets focus on generating numeric information

More information

NCSS Statistical Software. The Data Window

NCSS Statistical Software. The Data Window Chapter 103 Introduction This chapter discusses the operation of the NCSS Data Window, one of the four main windows of the NCSS statistical analysis system. The other three windows are the Output Window,

More information

Chapter 1: Introduction to SAS

Chapter 1: Introduction to SAS Chapter 1: Introduction to SAS SAS programs: A sequence of statements in a particular order. Rules for SAS statements: 1. Every SAS statement ends in a semicolon!!!; 2. Upper/lower case does not matter

More information

Software and Programming 1

Software and Programming 1 Software and Programming 1 Lab 1: Introduction, HelloWorld Program and use of the Debugger 17 January 2019 SP1-Lab1-2018-19.pptx Tobi Brodie (tobi@dcs.bbk.ac.uk) 1 Module Information Lectures: Afternoon

More information

Stata: A Brief Introduction Biostatistics

Stata: A Brief Introduction Biostatistics Stata: A Brief Introduction Biostatistics 140.621 2005-2006 1. Statistical Packages There are many statistical packages (Stata, SPSS, SAS, Splus, etc.) Statistical packages can be used for Analysis Data

More information

XML 2 APPLICATION. Chapter SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC.

XML 2 APPLICATION. Chapter SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC. XML 2 APPLIATION hapter SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN. Objectives You will learn: How to create an XML document. The role of the document map, prolog, and XML declarations. Standalone declarations.

More information

Welcome to Cole On-line Help system!

Welcome to Cole On-line Help system! Welcome to Cole On-line Help system! Cole Online is an Internet based information directory that allows fast and efficient access to demographic information about residences and businesses. You can search

More information

Monitoring. In This Chapter

Monitoring. In This Chapter ebugging and hapter Monitoring 0 In This hapter Monitor with ata View... 0- hange Value ialog.... 0- Using the Memory Editor.... 0-0 Test Mode Operations for ebugging.... 0- Trap Monitor.... 0- Stack Monitor

More information

CROSSREF Manual. Tools and Utilities Library

CROSSREF Manual. Tools and Utilities Library Tools and Utilities Library CROSSREF Manual Abstract This manual describes the CROSSREF cross-referencing utility, including how to use it with C, COBOL 74, COBOL85, EXTENDED BASIC, FORTRAN, Pascal, SCREEN

More information

Working with Excel involves two basic tasks: building a spreadsheet and then manipulating the

Working with Excel involves two basic tasks: building a spreadsheet and then manipulating the Working with Excel You use Microsoft Excel to create spreadsheets, which are documents that enable you to manipulate numbers and formulas to create powerful mathematical, financial, and statistical models

More information

Essentials of PDV: Directing the Aim to Understanding the DATA Step! Arthur Xuejun Li, City of Hope National Medical Center, Duarte, CA

Essentials of PDV: Directing the Aim to Understanding the DATA Step! Arthur Xuejun Li, City of Hope National Medical Center, Duarte, CA PharmaSUG 2013 - Paper TF17 Essentials of PDV: Directing the Aim to Understanding the DATA Step! Arthur Xuejun Li, City of Hope National Medical Center, Duarte, CA ABSTRACT Beginning programmers often

More information

Welcome to Top 10 SAS Functions

Welcome to Top 10 SAS Functions Welcome to Top 10 SAS Functions Goal and Agenda By the end of this meeting, you will understand 10 key SAS functions purpose, value and features. What are SAS functions? Why use them? Use Case Manipulating

More information

MadCap Software. Index Guide. Flare 2017 r2

MadCap Software. Index Guide. Flare 2017 r2 MadCap Software Index Guide Flare 2017 r2 Copyright 2017 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

ACCESS Procedure Reference

ACCESS Procedure Reference 59 CHAPTER 5 ACCESS Procedure Reference Introduction 59 Case Sensitivity in the ACCESS Procedure 60 ACCESS Procedure 60 Description 61 PROC ACCESS Statement Options 62 Options 62 SAS System Passwords for

More information

Excel Tables and Pivot Tables

Excel Tables and Pivot Tables A) Why use a table in the first place a. Easy to filter and sort if you only sort or filter by one item b. Automatically fills formulas down c. Can easily add a totals row d. Easy formatting with preformatted

More information

Microsoft Excel 2010

Microsoft Excel 2010 www.jadehorizon.com Microsoft Excel 2010 Sorting and Filtering Sorting and Filtering Microsoft Excel 2010 Table of Contents Table of Contents INTRODUCTION... 3 CONVENTIONS... 3 TABLE DESIGN RULES... 5

More information

INTRODUCTION. NOTE Some symbols used in this manual CL = Click Left CR = Click Right DCL = Double Click Left = Enter. Page 1

INTRODUCTION. NOTE Some symbols used in this manual CL = Click Left CR = Click Right DCL = Double Click Left = Enter. Page 1 INTRODUCTION OBJECTIVE The purpose of this manual is to provide the student with practical experience in the writing of assembly language programs, and give them background and instructions on how to use

More information

Excel 2007/2010. Don t be afraid of PivotTables. Prepared by: Tina Purtee Information Technology (818)

Excel 2007/2010. Don t be afraid of PivotTables. Prepared by: Tina Purtee Information Technology (818) Information Technology MS Office 2007/10 Users Guide Excel 2007/2010 Don t be afraid of PivotTables Prepared by: Tina Purtee Information Technology (818) 677-2090 tpurtee@csun.edu [ DON T BE AFRAID OF

More information

Searching Guide. September 16, Version 9.3

Searching Guide. September 16, Version 9.3 Searching Guide September 16, 2016 - Version 9.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

How to Create Custom Name Badge Inserts with a Mail Merge in Microsoft Word 2007

How to Create Custom Name Badge Inserts with a Mail Merge in Microsoft Word 2007 Many people know that you can use the Mail Merge feature in Microsoft Word 2007 to easily create mailing labels, but did you know you can use it to quickly create custom name badge inserts? Here, you will

More information

Session One: MINITAB Basics

Session One: MINITAB Basics 8 Session One: MINITAB Basics, 8-2 Start MINITAB, 8-3 Open a Worksheet, 8-3 Enter Data from the Keyboard, 8-4 Enter Patterned Data, 8-4 Save Your Project, 8-5 Compute Descriptive Statistics, 8-6 Perform

More information

Editing and Formatting Worksheets

Editing and Formatting Worksheets LESSON 2 Editing and Formatting Worksheets 2.1 After completing this lesson, you will be able to: Format numeric data. Adjust the size of rows and columns. Align cell contents. Create and apply conditional

More information

Chapter 7 File Access. Chapter Table of Contents

Chapter 7 File Access. Chapter Table of Contents Chapter 7 File Access Chapter Table of Contents OVERVIEW...105 REFERRING TO AN EXTERNAL FILE...105 TypesofExternalFiles...106 READING FROM AN EXTERNAL FILE...107 UsingtheINFILEStatement...107 UsingtheINPUTStatement...108

More information

16. Reading raw data in fixed fields. GIORGIO RUSSOLILLO - Cours de prépara)on à la cer)fica)on SAS «Base Programming» 364

16. Reading raw data in fixed fields. GIORGIO RUSSOLILLO - Cours de prépara)on à la cer)fica)on SAS «Base Programming» 364 16. Reading raw data in fixed fields 364 Reading raw Dataset: three solu)ons You can mix all of them! Data that SAS cannot read without further informa)on 365 Reading standard data with column input: review

More information

Table Of Contents. Table Of Contents

Table Of Contents. Table Of Contents Windows and Files Table Of Contents Table Of Contents Minitab Windows... 5 Windows... 5 Rename Graph... 5 Rename Worksheet... 5 Data Window... 7 Data Window Overview... 7 General information on working

More information

Minitab Notes for Activity 1

Minitab Notes for Activity 1 Minitab Notes for Activity 1 Creating the Worksheet 1. Label the columns as team, heat, and time. 2. Have Minitab automatically enter the team data for you. a. Choose Calc / Make Patterned Data / Simple

More information

Basic tasks in Excel 2013

Basic tasks in Excel 2013 Basic tasks in Excel 2013 Excel is an incredibly powerful tool for getting meaning out of vast amounts of data. But it also works really well for simple calculations and tracking almost any kind of information.

More information

MakeLabels A PDS4 Label Generator Tool PDS Geosciences Node

MakeLabels A PDS4 Label Generator Tool PDS Geosciences Node MakeLabels A PDS4 Label Generator Tool PDS Geosciences Node Version 5.3 7-19-2017 Created by Dan Scholes scholes@wunder.wustl.edu Send question and comments to Dan Scholes. 1 Table of Contents Summary...

More information

work.test temp.test sasuser.test test

work.test temp.test sasuser.test test DSCI 325 Midterm Practice Test Spring 2017 Name: 1. Consider the following four names used to create a SAS data set: work.test temp.test sasuser.test test How many of these will be stored as permanent

More information

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4 Microsoft Excel 2010 Advanced 3-4 0 Absolute references There may be times when you do not want a cell reference to change when copying or filling cells. You can use an absolute reference to keep a row

More information

Bulk Provisioning Overview

Bulk Provisioning Overview CHAPTER 8 Bulk provisioning functionality in the Cisco Voice Provisioning Tool allows you to add or modify a large number of users or a large number of phones/device profiles (and the corresponding configuration

More information

Introducing Microsoft Office Specialist Excel Module 1. Adobe Captivate Wednesday, May 11, 2016

Introducing Microsoft Office Specialist Excel Module 1. Adobe Captivate Wednesday, May 11, 2016 Slide 1 - Introducing Microsoft Office Specialist Excel 2013 Introducing Microsoft Office Specialist Excel 2013 Module 1 Page 1 of 25 Slide 2 - Lesson Objectives Lesson Objectives Understand what Microsoft

More information

IST Computational Tools for Statistics I. DEÜ, Department of Statistics

IST Computational Tools for Statistics I. DEÜ, Department of Statistics IST 1051 Computational Tools for Statistics I 1 DEÜ, Department of Statistics Course Objectives Computational Tools for Statistics-I course can increase the understanding of statistics and helps to learn

More information

EXCEL CONNECT USER GUIDE

EXCEL CONNECT USER GUIDE USER GUIDE Developed and published by Expedience Software Copyright 2012-2017 Expedience Software Excel Connect Contents About this Guide... 1 The Style Palette User Guide 1 Excel Connect Overview... 2

More information

Lecture- 5. Introduction to Microsoft Excel

Lecture- 5. Introduction to Microsoft Excel Lecture- 5 Introduction to Microsoft Excel The Microsoft Excel Window Microsoft Excel is an electronic spreadsheet. You can use it to organize your data into rows and columns. You can also use it to perform

More information

Spreadsheet File Transfer User Guide. FR 2835 Quarterly Report of Interest Rates on Selected Direct Consumer Installment Loans

Spreadsheet File Transfer User Guide. FR 2835 Quarterly Report of Interest Rates on Selected Direct Consumer Installment Loans Spreadsheet File Transfer User Guide FR 2835 Quarterly Report of Interest Rates on Selected Direct Consumer Installment Loans STATISTICS FUNCTION Effective August 8, 2015 Overview The Federal Reserve System

More information

AgGateway Product Movement Report Flat File Format DRAFT

AgGateway Product Movement Report Flat File Format DRAFT AgGateway Product Movement Report Flat File Format User Guide DRAFT Version: 20151014 - DRAFT Version Tracking Version Authors Change Description 20151014 - DRAFT Charlie Nuzzolo Initial Draft Prepared

More information

How to bulk upload users

How to bulk upload users City & Guilds How to bulk upload users How to bulk upload users The purpose of this document is to guide a user how to bulk upload learners and tutors onto SmartScreen. 2014 City and Guilds of London Institute.

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

matrix window based on the ORIGIN.OTM template. Shortcut: Click the New Matrix button

matrix window based on the ORIGIN.OTM template. Shortcut: Click the New Matrix button Matrices Introduction to Matrices There are two primary data structures in Origin: worksheets and matrices. Data stored in worksheets can be used to create any 2D graph and some 3D graphs, but in order

More information

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide VBA Visual Basic for Applications Learner Guide 1 Table of Contents SECTION 1 WORKING WITH MACROS...5 WORKING WITH MACROS...6 About Excel macros...6 Opening Excel (using Windows 7 or 10)...6 Recognizing

More information