GenStat Data Manipulation workshop 1

Size: px
Start display at page:

Download "GenStat Data Manipulation workshop 1"

Transcription

1 For 16th edition GenStat Data Manipulation workshop 1 Contents 1. Re-ordering factor levels 2. Transforming data calculating a new column 3. Recalculating a column 4. Duplicating a column 5. Clearing data from a session 6. Restricting or filtering data 7. Reference Course pre-requisites: attendees should have attended a GenStat Introduction workshop (or be familiar with GenStat). 1. Re-ordering factor levels These data come from Ott & Longnecker (2001) (Example 8.4, p.404) and consist of dissolved oxygen (ppm) in seawater at four distances from the mouth of the Mississippi River. To begin, Start GenStat Create a new GenStat spreadsheet using the Excel spreadsheet Distance oxygen.xls Set the columns Distance and sample as factors. Save the spreadsheet as a GenStat spreadsheet (.GSH) called Distance oxygen.gsh Note: Each level of a factor in GenStat has three attributes: an ordinal, a level, and a label. The ordinal is simply a number that indicates the order the levels of the factor will be displayed. The ordinal values start with 1 for the first level displayed. The level is another number - it may take any value and is usually a treatment or dose value. (It can also be the same as the ordinal, i.e., 1, 2, 3,.). The label is a text descriptor for each level of the factor (often an abbreviated treatment name or other identifier e.g., cultivar name). Generate a list of means for each distance: Stats > Summary Statistics > Summary Tables Variate: oxygen Groups: Distance Click [Run] and the following should appear in the Output window: Mean Distance 1 km km km km 4.60 Notice that in the summary statistics above, the order of the Distance factor levels is not very sensible: 5 km is last in the list when (logically) it should be second in the list. 2013, Library, Teaching & Learning, Lincoln University page 1

2 GenStat originally read in the data as text and therefore sorted the levels alphabetically instead of numerically. We can change this order so that it is correct for further output. Re-order the factor levels: Select the spreadsheet Spread > Factor > Reorder Levels or A dialog box will appear (Figure 1). You may now sort the levels manually or automatically. To manually sort the levels: Select 5 km and click the [Up] button twice to move the 5 km into the correct place (Figure 2). To automatically sort the levels: Click the [Sort] button Choose the Sort Type: select either By Numerical Part or Numerical prefix (eg 2A, 10A) and click [OK]. When the order of the distances is correct (i.e., 1 km, 5 km, 10 km, 20 km), click [OK]. Figure 1 Reorder Factor dialog box. The levels are in incorrect numerical order. Figure 2 The 5 km level has been moved up to the correct position. Redo the summary table: Return to the Summary Tables dialog. Click [Run] to calculate the summary again. The distances should now appear in the desired order: Mean Distance 1 km km km km , Library, Teaching & Learning, Lincoln University page 2

3 2. Transforming data calculating a new column During data analysis, it is common to have to transform data. Sometimes this is to meet the assumptions of particular analysis methods. For example, ANOVA and ordinary least squares regression methods both assume that variances are homogeneous. To calculate a new column of data in a spreadsheet: First, select the spreadsheet, then select Spread > Calculate > Column The Calculate dialog box will appear. Click [Functions ]. The Calculate Functions dialog box will appear. From the Function: drop-down list, choose Logarithm to base 10 (Figure 3). Figure 3 Function drop-down list. Specify oxygen as X by double-clicking on oxygen from the Available Data: list (Figure 4): Figure 4 The Calculate Functions dialog box ready for the calculation log 10 (oxygen). Click [OK] to return to the Calculate dialog box and type Log_oxygen in the Save result in: box (Figure 5): Figure 5 The Calculate dialog box showing the log 10 (oxygen) calculation that will be saved as the column Log_oxygen in the original spreadsheet named Distance oxygen.gsh. 2013, Library, Teaching & Learning, Lincoln University page 3

4 Click [Run] and the following warning message will appear: This message appears because one of the values for oxygen is 0 and log(0) is undefined. Any calculation that gives an error will return a missing value to the spreadsheet (Figure 6): calculated column missing value Figure 6 Spreadsheet with the calculated log 10 (oxygen) values. Note (1) that Row 9 contains a missing value (represented by *) because Row 9 has an oxygen value of 0, and log 10 (0) is undefined. Note (2) the yellow shading on Log in the column title Log_oxygen indicating that this is a calculated column. One way to avoid the zeroes problem when calculating log values is to use log(x + 1) instead of log(x). To do this: Go back to the Calculate dialog box (Figure 5). Edit the formula to read LOG10(oxygen+1)and click [Run]. The spreadsheet should now contain the recalculated values of Log_oxygen (Figure 7). Figure 7 Spreadsheet after the successful calculation of log 10 (oxygen+1). Note that Row 9 now contains a Log_oxygen value of , Library, Teaching & Learning, Lincoln University page 4

5 3. Recalculating a column An alternative way to recalculate a spreadsheet column (rather than using the Calculate dialog box) is: Select the spreadsheet then use Spread > Calculate > Recalculate Edit the formula in the dialog box as necessary (Figure 8). Figure 8 The Recalculate Spreadsheet dialog box can be used to edit and recalculate an existing spreadsheet column formula. Note: Unlike Excel, if you change or edit the data in your GenStat spreadsheet, a calculated column will NOT be automatically updated, and will NOT automatically reflect any changes that you make to the data. If you change any data used in calculations, you will need to manually recalculate the calculated column using Spread > Calculate > Recalculate 4. Duplicating a column Sometimes you need to duplicate a column of data perhaps to perform calculations or edits on one column while keeping the original column intact. GenStat provides a simple way of duplicating columns. In this example, we will duplicate the Distance factor column and at the same time change the new column to a variate. Select the Distance column in the spreadsheet Distance oxygen.gsh Use: Spread > Column > Duplicate (or ) to produce the Duplicate Column dialog box. Select Variate in the Create as list at the right of the dialog box. GenStat provides a default New Column Name: of Distance_1 which you may want to change. I suggest something like Distance_v or vdistance so you can see it is a variate for Distance (Figure 9). Figure 9 The Duplicate Column dialog box used for duplicating the factor Distance as a variate named Distance_v. 2013, Library, Teaching & Learning, Lincoln University page 5

6 Click [OK]. You may then see the following warning message appear (Figure 10). Click either [Yes] or [No] depending on whether you want to see the summary in the Output window. Figure 10 A warning message that can appear when converting text labels to numbers. The resulting spreadsheet (Figure 11) shows both the factor Distance (notice the red! alongside the column heading) and the variate Distance_v. Note the following: Note that GenStat has used the numerical part of the Distance label for the values of the variate named Distance_v, (i.e., 1 km => 1, 5 km => 5, etc). When converting a factor to a variate, the way the factor is converted depends on how the factor levels are displayed. If the values of the factor are displayed as ordinals or levels, then the variate will contain these same numbers. If the values of the factor are displayed as text labels (as they are here), then GenStat will attempt to convert the text to numbers for the variate values. The names of data structures in GenStat are case-sensitive. That is, Distance, distance, DISTANCE, and distance etc. would all be considered to be different names (and hence different columns). You can use this property when you create duplicate or related columns, but you do then need to remember which column is which. Figure 11 Spreadsheet after duplicating the factor Distance as a variate named Distance_v. 2013, Library, Teaching & Learning, Lincoln University page 6

7 5. Clearing data and output Sometimes you need to clear all the data from GenStat and start with new data. Clearing data from the GenStat server: Note: Close all spreadsheets (saving them if necessary) Use: Data > Clear All Data or [Ctrl+D] Press [Yes] If you do not close open spreadsheets before clearing the data, then the data from those spreadsheets will be automatically re-loaded back into the server next time you use a menu. This provides an easy way to selectively delete or keep data by closing unwanted spreadsheets and leaving any wanted spreadsheets open. Clearing output from the Output window: Usually when you clear the data, you will also want to clear the output. Go to the Output window. Clear all the text from the Output window by using Edit > Delete from the main menu, then click [Yes]. Alternatively, to remove just some of the text in the Output window select the unwanted output and again use Edit > Delete from the main menu. (Use the deleting it.) button to recover a section of output if you change your mind immediately after 6. Restricting or filtering data One of the most powerful and useful data manipulations in GenStat is the ease with which you can restrict or filter data. Not all statistics packages offer this feature (e.g., Minitab doesn t) and some others only offer a lesser version of it (e.g., Select Cases in Systat and SPSS). Filtering is used to select a subset of the data for subsequent analysis, e.g. to include data from a certain Site only, or to exclude data from a certain Block, or to exclude or include data with missing values. GenStat differs from most other statistics programs in that after applying one restriction to the data, you can apply a second, a third, or even more restrictions, to restrict the data further and further. In the following exercise, you will open a GenStat spreadsheet, summarise the data, apply a restriction, then do a calculation using the restricted data, summarise the data again, and then lastly remove the restriction. First load the data: Load the data file: Long-term plots spider data.gsh. This file contains data collected from some long-term ecology plots at Lincoln University. The experiment consists of four mowing treatments and two nitrogen treatments applied to 4 5 m plots arranged in a randomised block design (McLachlan, 2000). 2013, Library, Teaching & Learning, Lincoln University page 7

8 Summarise the data: Generate a list of means and sample sizes for each treatment: Stats > Summary Statistics > Summary Tables Variate: Number Groups: Mowing Display: Means, No. of Observations Click [Run]. The output should be as follows: Nobservd Mean Mowing M MI CL MI CR MR CL Restrict the data to exclude the MI CR (Mowing infrequently, Clippings removed) treatment. Select the spreadsheet. Select the Mowing column. Select Spread > Restrict/Filter > To Groups (factor levels) from the main menu (or click on the Filter Spreadsheet by Groups button, ) The Restrict Units on Factor Mowing dialog box will appear (Figure 12). Make sure the Factor: box contains Mowing Click on MI CR in the Selected Levels: list. Select Exclude as the Restriction type, then click [OK]. Figure 12 Restriction dialog box showing that the MI CR level of the Mowing factor will be excluded. 2013, Library, Teaching & Learning, Lincoln University page 8

9 The restriction should now be evident in the spreadsheet notice the red horizontal lines at the top left of the speadsheet and that rows (rows 1, 6, ) are missing (Figure 13). Also notice the status bar at the bottom of the screen. When a spreadsheet is active, the status bar shows how many rows and columns there are in the spreadsheet. In this case, the status bar shows to indicate that 24 of the 32 rows have been included (8 rows have been excluded), and that there are 6 columns. Figure 13 Spreadsheet showing data after the MI CR level of the Mowing factor has been excluded. To display the excluded rows in the spreadsheet, click on the at the top right of the spreadsheet (above the scrollbar). There should now be rows displayed in red in the spreadsheet (e.g., row 1, row 6, Figure 14). Click this cross. Excluded rows of data (in red) from the MI CR level of Mowing. Figure 14 Spreadsheet showing data after the MI CR level of the Mowing factor has been excluded and the button has been pressed to reveal the excluded rows in red. Press the button again to hide the excluded rows. 2013, Library, Teaching & Learning, Lincoln University page 9

10 Return to the Summary Tables dialog box (Stats > Summary Statistics > Summary Tables ). Click [Run] to display the summary again: Nobservd Mean Mowing M MI CL MI CR 0 * MR CL With the restriction in place, the MI CR level of the Mowing treatment has 0 observed values and the mean cannot be calculated (shown as a missing value * ). Compare these results to the results from before the restriction. Calculating new columns when restrictions are in place Calculate the log of the Number variable using log10(number). (Refer back to Section 2 for instructions on how to do this). Name the newly transformed column Log_Number. By default GenStat will remove the restriction before calculating the new column but you do get a choice (Figure 15): Figure 15 Restriction Warning dialog. Click on the Help button,, to see detailed information about the options then select either Remove and reapply or Leave restriction. Adding another Restriction GenStat allows multiple restrictions to be used at one time. The data are currently restricted to exclude all those plots with grass clippings removed (Mowing = MI CR). The following exercise shows one way to further restrict the data so that any plots with nitrogen added (Nitrogen = 1) are also excluded. Select the Nitrogen column in the spreadsheet. Spread > Restrict/Filter > To Groups (factor levels) The Restrict Units on Factor Nitrogen dialog appears. Make sure the Factor: box contains Nitrogen. Click on 1 in the Selected levels: list. 2013, Library, Teaching & Learning, Lincoln University page 10

11 Select Restriction type : Exclude Existing restrictions : Combine with New Click [OK] and notice how the spreadsheet display has changed. Also notice the status bar now shows to indicate that only 12 of the 32 rows are currently unrestricted. Click [Run] to display the summary again: Calculate a summary of the unrestricted data Return to the Summary Tables dialog box (Stats > Summary Statistics > Summary Tables ). Variate : Number Groups: Mowing Nitrogen Display: No. of Observations, Means Press [Run] to display the new summary information. Nitrogen 0 1 Nobservd Mean Nobservd Mean Mowing M * MI CL * MI CR 0 * 0 * MR CL * The above data summary shows that the restricted data excludes both data from Mowing = MI CR plots and data from Nitrogen = 1 plots. 2013, Library, Teaching & Learning, Lincoln University page 11

12 Figure 16 The spreadsheet after a second restriction (Nitrogen = 0) was combined with the first restriction (Mowing MI CR). Remove all restrictions Restrictions on data can easily be removed so that you can use all the data again: Select the spreadsheet. Spread > Restrict/Filter > Remove All (or press the Remove Filter button, on the tool bar) To see the result of removing the restriction, reproduce the Summary Table showing Mowing and Nitrogen levels (result below) and notice that all the data are now used. Nitrogen 0 1 Nobservd Mean Nobservd Mean Mowing M MI CL MI CR MR CL , Library, Teaching & Learning, Lincoln University page 12

13 7. Further information GenStat s Spreadsheet Guide (available via Help > GenStat Guides > Spreadsheet. ) will guide you through many more techniques for dealing with GenStat spreadsheets. 8. References McLachlan, A.R.G. (2000). Spider distribution in agroecosystems in Canterbury, New Zealand. (unpublished doctoral thesis). Lincoln University, Lincoln, New Zealand. Ott, R.L., & Longnecker, M. (2001). An introduction to statistical methods and data analysis. (5th ed.). Australia: Duxbury. 9. Acknowledgements Andrew McLachlan (previously of Lincoln University) designed a number of workshops for versions of GenStat available prior to The workshop presented today is based around one of the original workshops, updated for use with GenStat 16 th edition ( 2013). Alison Lister Learning Advisor (Mathematics and Statistics) Library, Teaching and Learning 2013, Library, Teaching & Learning, Lincoln University page 13

STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression

STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression analysis. Analysis of Variance: one way classification,

More information

For Additional Information...

For Additional Information... For Additional Information... The materials in this handbook were developed by Master Black Belts at General Electric Medical Systems to assist Black Belts and Green Belts in completing Minitab Analyses.

More information

Creating a data file and entering data

Creating a data file and entering data 4 Creating a data file and entering data There are a number of stages in the process of setting up a data file and analysing the data. The flow chart shown on the next page outlines the main steps that

More information

Statistical Good Practice Guidelines. 1. Introduction. Contents. SSC home Using Excel for Statistics - Tips and Warnings

Statistical Good Practice Guidelines. 1. Introduction. Contents. SSC home Using Excel for Statistics - Tips and Warnings Statistical Good Practice Guidelines SSC home Using Excel for Statistics - Tips and Warnings On-line version 2 - March 2001 This is one in a series of guides for research and support staff involved in

More information

Minitab 17 commands Prepared by Jeffrey S. Simonoff

Minitab 17 commands Prepared by Jeffrey S. Simonoff Minitab 17 commands Prepared by Jeffrey S. Simonoff Data entry and manipulation To enter data by hand, click on the Worksheet window, and enter the values in as you would in any spreadsheet. To then save

More information

Biology 345: Biometry Fall 2005 SONOMA STATE UNIVERSITY Lab Exercise 2 Working with data in Excel and exporting to JMP Introduction

Biology 345: Biometry Fall 2005 SONOMA STATE UNIVERSITY Lab Exercise 2 Working with data in Excel and exporting to JMP Introduction Biology 345: Biometry Fall 2005 SONOMA STATE UNIVERSITY Lab Exercise 2 Working with data in Excel and exporting to JMP Introduction In this exercise, we will learn how to reorganize and reformat a data

More information

lab MS Excel 2010 active cell

lab MS Excel 2010 active cell MS Excel is an example of a spreadsheet, a branch of software meant for performing different kinds of calculations, numeric data analysis and presentation, statistical operations and forecasts. The main

More information

INTRODUCTION TO GENSTAT 14 FOR WINDOWS

INTRODUCTION TO GENSTAT 14 FOR WINDOWS INTRODUCTION TO GENSTAT 14 FOR WINDOWS November 2011 CONTENTS 1. GenStat basics... 1 2. Data Input and Manipulation... 1 2.1 Starting GenStat 14th Edition... 1 2.2 Data input... 3 2.3 Some basic data manipulation...

More information

CITS. mycourses Grade Book & Grading Forms

CITS. mycourses Grade Book & Grading Forms CITS Computing & Information Technology Services mycourses Grade Book & Grading Forms What This Workshop Will Cover: Adding grade book columns Entering grades Editing grade book columns Create a formula

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

In Minitab interface has two windows named Session window and Worksheet window.

In Minitab interface has two windows named Session window and Worksheet window. Minitab Minitab is a statistics package. It was developed at the Pennsylvania State University by researchers Barbara F. Ryan, Thomas A. Ryan, Jr., and Brian L. Joiner in 1972. Minitab began as a light

More information

PowerPoint Presentation to Accompany GO! All In One. Chapter 13

PowerPoint Presentation to Accompany GO! All In One. Chapter 13 PowerPoint Presentation to Accompany GO! Chapter 13 Create, Query, and Sort an Access Database; Create Forms and Reports 2013 Pearson Education, Inc. Publishing as Prentice Hall 1 Objectives Identify Good

More information

Exercise: Graphing and Least Squares Fitting in Quattro Pro

Exercise: Graphing and Least Squares Fitting in Quattro Pro Chapter 5 Exercise: Graphing and Least Squares Fitting in Quattro Pro 5.1 Purpose The purpose of this experiment is to become familiar with using Quattro Pro to produce graphs and analyze graphical data.

More information

Microsoft Excel 2010 Basic

Microsoft Excel 2010 Basic Microsoft Excel 2010 Basic Introduction to MS Excel 2010 Microsoft Excel 2010 is a spreadsheet software in the new Microsoft 2010 Office Suite. Excel allows you to store, manipulate and analyze data in

More information

1. Managing Information in Table

1. Managing Information in Table 1. Managing Information in Table Spreadsheets are great for making lists (such as phone lists, client lists). The researchers discovered that not only was list management the number one spreadsheet activity,

More information

Ivy s Business Analytics Foundation Certification Details (Module I + II+ III + IV + V)

Ivy s Business Analytics Foundation Certification Details (Module I + II+ III + IV + V) Ivy s Business Analytics Foundation Certification Details (Module I + II+ III + IV + V) Based on Industry Cases, Live Exercises, & Industry Executed Projects Module (I) Analytics Essentials 81 hrs 1. Statistics

More information

Contents. Spreadsheet Software ITQ Level 1

Contents. Spreadsheet Software ITQ Level 1 Contents SKILL SET 1 FUNDAMENTALS... 11 1 - SPREADSHEET PRINCIPLES... 12 2 - STARTING EXCEL... 13 3 - THE LAYOUT OF THE EXCEL SCREEN... 14 4 - THE RIBBON... 16 5 - THE WORKSHEET WINDOW... 18 6 - CLOSING

More information

Row 1 is called the header row which contains all the field names. Records start in row 2.

Row 1 is called the header row which contains all the field names. Records start in row 2. Excel: Lists Familiarity with basic Excel is required for this class. Learn to create field names, sort lists, and link worksheets. You'll learn lists that can also be used in our Word: Mail Merge class.

More information

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

M i c r o s o f t E x c e l A d v a n c e d. Microsoft Excel 2010 Advanced Microsoft Excel 2010 Advanced 0 Working with Rows, Columns, Formulas and Charts Formulas A formula is an equation that performs a calculation. Like a calculator, Excel can execute formulas that add, subtract,

More information

Data Analysis Guidelines

Data Analysis Guidelines Data Analysis Guidelines DESCRIPTIVE STATISTICS Standard Deviation Standard deviation is a calculated value that describes the variation (or spread) of values in a data set. It is calculated using a formula

More information

Three-Dimensional (Surface) Plots

Three-Dimensional (Surface) Plots Three-Dimensional (Surface) Plots Creating a Data Array 3-Dimensional plots (surface plots) are often useful for visualizing the behavior of functions and identifying important mathematical/physical features

More information

EXCEL 98 TUTORIAL Chemistry C2407 fall 1998 Andy Eng, Columbia University 1998

EXCEL 98 TUTORIAL Chemistry C2407 fall 1998 Andy Eng, Columbia University 1998 Created on 09/02/98 11:58 PM 1 EXCEL 98 TUTORIAL Chemistry C2407 fall 1998 Andy Eng, Columbia University 1998 Note for Excel 97 users: All features of Excel 98 for Macintosh are available in Excel 97 for

More information

Getting Started with JMP at ISU

Getting Started with JMP at ISU Getting Started with JMP at ISU 1 Introduction JMP (pronounced like jump ) is the new campus-wide standard statistical package for introductory statistics courses at Iowa State University. JMP is produced

More information

UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Combining Data Your Way

UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Combining Data Your Way UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Arizona Board of Regents, 2014 THE UNIVERSITY OF ARIZONA created 02.07.2014 v.1.00 For information and permission to use our

More information

MS Excel Advanced Level

MS Excel Advanced Level MS Excel Advanced Level Trainer : Etech Global Solution Contents Conditional Formatting... 1 Remove Duplicates... 4 Sorting... 5 Filtering... 6 Charts Column... 7 Charts Line... 10 Charts Bar... 10 Charts

More information

Introduction (SPSS) Opening SPSS Start All Programs SPSS Inc SPSS 21. SPSS Menus

Introduction (SPSS) Opening SPSS Start All Programs SPSS Inc SPSS 21. SPSS Menus Introduction (SPSS) SPSS is the acronym of Statistical Package for the Social Sciences. SPSS is one of the most popular statistical packages which can perform highly complex data manipulation and analysis

More information

- 1 - Fig. A5.1 Missing value analysis dialog box

- 1 - Fig. A5.1 Missing value analysis dialog box WEB APPENDIX Sarstedt, M. & Mooi, E. (2019). A concise guide to market research. The process, data, and methods using SPSS (3 rd ed.). Heidelberg: Springer. Missing Value Analysis and Multiple Imputation

More information

Are your spreadsheets filled with unnecessary zero s, cluttering your information and making it hard to identify significant results?

Are your spreadsheets filled with unnecessary zero s, cluttering your information and making it hard to identify significant results? Declutter your Spreadsheets by Hiding Zero Values Are your spreadsheets filled with unnecessary zero s, cluttering your information and making it hard to identify significant results? Undertaking data

More information

1. Managing Information in Table

1. Managing Information in Table 1. Managing Information in Table Spreadsheets are great for making lists (such as phone lists, client lists). The researchers discovered that not only was list management the number one spreadsheet activity,

More information

Charts in Excel 2003

Charts in Excel 2003 Charts in Excel 2003 Contents Introduction Charts in Excel 2003...1 Part 1: Generating a Basic Chart...1 Part 2: Adding Another Data Series...3 Part 3: Other Handy Options...5 Introduction Charts in Excel

More information

To understand the limitations of paper spreadsheets and to explore the Excel environment, you will:

To understand the limitations of paper spreadsheets and to explore the Excel environment, you will: L E S S O N 1 Excel basics Suggested teaching time 20-30 minutes Lesson objectives To understand the limitations of paper spreadsheets and to explore the Excel environment, you will: a b c Identify some

More information

ADD AND NAME WORKSHEETS

ADD AND NAME WORKSHEETS 1 INTERMEDIATE EXCEL While its primary function is to be a number cruncher, Excel is a versatile program that is used in a variety of ways. Because it easily organizes, manages, and displays information,

More information

Formatting Spreadsheets in Microsoft Excel

Formatting Spreadsheets in Microsoft Excel Formatting Spreadsheets in Microsoft Excel This document provides information regarding the formatting options available in Microsoft Excel 2010. Overview of Excel Microsoft Excel 2010 is a powerful tool

More information

European Computer Driving Licence. Advanced Spreadsheet Software BCS ITQ Level 3. Syllabus Version 2.0

European Computer Driving Licence. Advanced Spreadsheet Software BCS ITQ Level 3. Syllabus Version 2.0 ECDL Advanced European Computer Driving Licence Advanced Spreadsheet Software BCS ITQ Level 3 Using Microsoft Excel 2010 Syllabus Version 2.0 This training, which has been approved by BCS, The Chartered

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

Example how not to do it: JMP in a nutshell 1 HR, 17 Apr Subject Gender Condition Turn Reactiontime. A1 male filler

Example how not to do it: JMP in a nutshell 1 HR, 17 Apr Subject Gender Condition Turn Reactiontime. A1 male filler JMP in a nutshell 1 HR, 17 Apr 2018 The software JMP Pro 14 is installed on the Macs of the Phonetics Institute. Private versions can be bought from

More information

Exploring Microsoft Office Word 2007

Exploring Microsoft Office Word 2007 Exploring Microsoft Office Word 2007 Chapter 3: Enhancing a Document Robert Grauer, Keith Mulbery, Michelle Hulett Objectives Insert a table Format a table Sort and apply formulas to table data Convert

More information

Chemical Reaction dataset ( https://stat.wvu.edu/~cjelsema/data/chemicalreaction.txt )

Chemical Reaction dataset ( https://stat.wvu.edu/~cjelsema/data/chemicalreaction.txt ) JMP Output from Chapter 9 Factorial Analysis through JMP Chemical Reaction dataset ( https://stat.wvu.edu/~cjelsema/data/chemicalreaction.txt ) Fitting the Model and checking conditions Analyze > Fit Model

More information

D-Optimal Designs. Chapter 888. Introduction. D-Optimal Design Overview

D-Optimal Designs. Chapter 888. Introduction. D-Optimal Design Overview Chapter 888 Introduction This procedure generates D-optimal designs for multi-factor experiments with both quantitative and qualitative factors. The factors can have a mixed number of levels. For example,

More information

Formulas Learn how to use Excel to do the math for you by typing formulas into cells.

Formulas Learn how to use Excel to do the math for you by typing formulas into cells. Microsoft Excel 2007: Part III Creating Formulas Windows XP Microsoft Excel 2007 Microsoft Excel is an electronic spreadsheet program. Electronic spreadsheet applications allow you to type, edit, and print

More information

Graphical Analysis of Data using Microsoft Excel [2016 Version]

Graphical Analysis of Data using Microsoft Excel [2016 Version] Graphical Analysis of Data using Microsoft Excel [2016 Version] Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable physical parameters.

More information

LEIAG-Excel Workshop

LEIAG-Excel Workshop Random Sample Excel has a simple formula we can utilize to obtain a random sample (cases, citations, city, etc.) At the Sheriff s Department, we are able to run a case management report that generates

More information

CHAPTER 6. The Normal Probability Distribution

CHAPTER 6. The Normal Probability Distribution The Normal Probability Distribution CHAPTER 6 The normal probability distribution is the most widely used distribution in statistics as many statistical procedures are built around it. The central limit

More information

GENSTAT DISCOVERY EDITION FOR EVERYDAY USE

GENSTAT DISCOVERY EDITION FOR EVERYDAY USE GENSTAT DISCOVERY EDITION FOR EVERYDAY USE Flemish Association for Development Co-Operation and Technical Assistance (VVOB) World Agroforestry Centre (ICRAF) Research Support Unit University of Reading

More information

Spreadsheet Warm Up for SSAC Geology of National Parks Modules, 2: Elementary Spreadsheet Manipulations and Graphing Tasks

Spreadsheet Warm Up for SSAC Geology of National Parks Modules, 2: Elementary Spreadsheet Manipulations and Graphing Tasks University of South Florida Scholar Commons Tampa Library Faculty and Staff Publications Tampa Library 2009 Spreadsheet Warm Up for SSAC Geology of National Parks Modules, 2: Elementary Spreadsheet Manipulations

More information

Formatting APA Tables

Formatting APA Tables Formatting APA Tables Upon completion of this lesson, you will be able to appropriately format tables using APA guidelines. Using tables to present tabular or numerical data can help make the information

More information

User Services Spring 2008 OBJECTIVES Introduction Getting Help Instructors

User Services Spring 2008 OBJECTIVES  Introduction Getting Help  Instructors User Services Spring 2008 OBJECTIVES Use the Data Editor of SPSS 15.0 to to import data. Recode existing variables and compute new variables Use SPSS utilities and options Conduct basic statistical tests.

More information

SSC-Stat Tutorial. by Roger Stern, Sandro Leidi and Colin Grayer. Contents

SSC-Stat Tutorial. by Roger Stern, Sandro Leidi and Colin Grayer. Contents by Roger Stern, Sandro Leidi and Colin Grayer Contents 1. Introduction 1 1.1. Data types 1 1.2. Sections of this guide 1 2. The data area 2 3. Simple descriptive methods 3 3.1. Analysing yields 4 3.2.

More information

CLAREMONT MCKENNA COLLEGE. Fletcher Jones Student Peer to Peer Technology Training Program. Basic Statistics using Stata

CLAREMONT MCKENNA COLLEGE. Fletcher Jones Student Peer to Peer Technology Training Program. Basic Statistics using Stata CLAREMONT MCKENNA COLLEGE Fletcher Jones Student Peer to Peer Technology Training Program Basic Statistics using Stata An Introduction to Stata A Comparison of Statistical Packages... 3 Opening Stata...

More information

Lastly, in case you don t already know this, and don t have Excel on your computers, you can get it for free through IT s website under software.

Lastly, in case you don t already know this, and don t have Excel on your computers, you can get it for free through IT s website under software. Welcome to Basic Excel, presented by STEM Gateway as part of the Essential Academic Skills Enhancement, or EASE, workshop series. Before we begin, I want to make sure we are clear that this is by no means

More information

A Tutorial for Excel 2002 for Windows

A Tutorial for Excel 2002 for Windows INFORMATION SYSTEMS SERVICES Data Manipulation with Microsoft Excel 2002 A Tutorial for Excel 2002 for Windows AUTHOR: Information Systems Services DATE: August 2004 EDITION: 1.0 TUT 130 UNIVERSITY OF

More information

Math 227 EXCEL / MEGASTAT Guide

Math 227 EXCEL / MEGASTAT Guide Math 227 EXCEL / MEGASTAT Guide Introduction Introduction: Ch2: Frequency Distributions and Graphs Construct Frequency Distributions and various types of graphs: Histograms, Polygons, Pie Charts, Stem-and-Leaf

More information

EXCEL Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development

EXCEL Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development Information Technology MS Office Excel 2007 Users Guide EXCEL 2007 Using Excel for Data Query & Management IT Training & Development (818) 677-1700 Training@csun.edu TABLE OF CONTENTS Introduction... 1

More information

CIE 272. Laboratory #6 EXCEL BASICS

CIE 272. Laboratory #6 EXCEL BASICS Objectives CIE 272 Laboratory #6 EXCEL BASICS Students will gain familiarity with Microsoft Excel. This exercise will introduce students to basic operations, built-in functions, equations, and graphing

More information

UW Department of Chemistry Lab Lectures Online

UW Department of Chemistry Lab Lectures Online Introduction to Excel and Computer Manipulation of Data Review Appendix A: Introduction to Statistical Analysis. Focus on the meanings and implications of the calculated values and not on the calculations.

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Basic Formulas Filling Data

More information

Quality and Six Sigma Tools using MINITAB Statistical Software: A complete Guide to Six Sigma DMAIC Tools using MINITAB

Quality and Six Sigma Tools using MINITAB Statistical Software: A complete Guide to Six Sigma DMAIC Tools using MINITAB Samples from MINITAB Book Quality and Six Sigma Tools using MINITAB Statistical Software A complete Guide to Six Sigma DMAIC Tools using MINITAB Prof. Amar Sahay, Ph.D. One of the major objectives of this

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Introduction This handout briefly outlines most of the basic uses and functions of Excel that we will be using in this course. Although Excel may be used for performing statistical

More information

How to Remove Duplicate Rows in Excel

How to Remove Duplicate Rows in Excel How to Remove Duplicate Rows in Excel http://www.howtogeek.com/198052/how-to-remove-duplicate-rows-in-excel/ When you are working with spreadsheets in Microsoft Excel and accidentally copy rows, or if

More information

Getting Started with DADiSP

Getting Started with DADiSP Section 1: Welcome to DADiSP Getting Started with DADiSP This guide is designed to introduce you to the DADiSP environment. It gives you the opportunity to build and manipulate your own sample Worksheets

More information

Excel Tips to help you with the PS477/577 Final Paper Project

Excel Tips to help you with the PS477/577 Final Paper Project Excel Tips to help you with the PS477/577 Final Paper Project Please try working through this sheet BEFORE the training session -- it will allow you to learn much more at the training session. Best of

More information

And the benefits are immediate minimal changes to the interface allow you and your teams to access these

And the benefits are immediate minimal changes to the interface allow you and your teams to access these Find Out What s New >> With nearly 50 enhancements that increase functionality and ease-of-use, Minitab 15 has something for everyone. And the benefits are immediate minimal changes to the interface allow

More information

Gradebook Entering, Sorting, and Filtering Student Scores March 10, 2017

Gradebook Entering, Sorting, and Filtering Student Scores March 10, 2017 Gradebook Entering, Sorting, and Filtering Student Scores March 10, 2017 1. Entering Student Scores 2. Exclude Student from Assignment 3. Missing Assignments 4. Scores by Class 5. Sorting 6. Show Filters

More information

An introduction to SPSS

An introduction to SPSS An introduction to SPSS To open the SPSS software using U of Iowa Virtual Desktop... Go to https://virtualdesktop.uiowa.edu and choose SPSS 24. Contents NOTE: Save data files in a drive that is accessible

More information

Notes for Student Version of Soritec

Notes for Student Version of Soritec Notes for Student Version of Soritec Department of Economics January 20, 2001 INSTRUCTIONS FOR USING SORITEC This is a brief introduction to the use of the student version of the Soritec statistical/econometric

More information

Tutorial 3 - Performing a Change-Point Analysis in Excel

Tutorial 3 - Performing a Change-Point Analysis in Excel Tutorial 3 - Performing a Change-Point Analysis in Excel Introduction This tutorial teaches you how to perform a change-point analysis while using Microsoft Excel. The Change-Point Analyzer Add-In allows

More information

Introduction to Excel 2013 Part 2

Introduction to Excel 2013 Part 2 Introduction to Excel 2013 Part 2 Open a file Select File from the Menu bar, select Open from the drop down menu, navigate to the place where the file was stored, double-left click on the file name. Modify

More information

Introductory Excel Walpole Public Schools. Professional Development Day March 6, 2012

Introductory Excel Walpole Public Schools. Professional Development Day March 6, 2012 Introductory Excel 2010 Walpole Public Schools Professional Development Day March 6, 2012 By: Jessica Midwood Agenda: What is Excel? How is Excel 2010 different from Excel 2007? Basic functions of Excel

More information

INSTRUCTIONS FOR USING MICROSOFT EXCEL PERFORMING DESCRIPTIVE AND INFERENTIAL STATISTICS AND GRAPHING

INSTRUCTIONS FOR USING MICROSOFT EXCEL PERFORMING DESCRIPTIVE AND INFERENTIAL STATISTICS AND GRAPHING APPENDIX INSTRUCTIONS FOR USING MICROSOFT EXCEL PERFORMING DESCRIPTIVE AND INFERENTIAL STATISTICS AND GRAPHING (Developed by Dr. Dale Vogelien, Kennesaw State University) ** For a good review of basic

More information

Creating a Pivot Table

Creating a Pivot Table Contents Introduction... 1 Creating a Pivot Table... 1 A One-Dimensional Table... 2 A Two-Dimensional Table... 4 A Three-Dimensional Table... 5 Hiding and Showing Summary Values... 5 Adding New Data and

More information

GenStat for Schools. Disappearing Rock Wren in Fiordland

GenStat for Schools. Disappearing Rock Wren in Fiordland GenStat for Schools Disappearing Rock Wren in Fiordland A possible decrease in number of Rock Wren in the Fiordland area of New Zealand between 1985 and 2005 was investigated. Numbers were recorded in

More information

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon Custom Sorting and Subtotaling Excel Intermediate Excel allows us to sort data whether it is alphabetic or numeric. Simply clicking within a column or row of data will begin the process. Click in the name

More information

Using Tables, Sparklines and Conditional Formatting. Module 5. Adobe Captivate Wednesday, May 11, 2016

Using Tables, Sparklines and Conditional Formatting. Module 5. Adobe Captivate Wednesday, May 11, 2016 Slide 1 - Using Tables, Sparklines and Conditional Formatting Using Tables, Sparklines and Conditional Formatting Module 5 Page 1 of 27 Slide 2 - Lesson Objectives Lesson Objectives Explore the find and

More information

Some useful shortcut keys applicable for both Excel and Word (16 to 19 is only for Excel): Sr.No. Shortcut Keys Description

Some useful shortcut keys applicable for both Excel and Word (16 to 19 is only for Excel): Sr.No. Shortcut Keys Description Some useful shortcut keys applicable for both Excel and Word (16 to 19 is only for Excel): Sr.No. Shortcut Keys Description 1 Ctrl + C Copy the selected data 2 Ctrl + X Cut the selected data 3 Ctrl + V

More information

Intermediate Microsoft Access 2010

Intermediate Microsoft Access 2010 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet & MS Access database Create Relationships Create a Form with a Subform Create Action Queries Create Command Buttons Create a Switchboard

More information

Running Minitab for the first time on your PC

Running Minitab for the first time on your PC Running Minitab for the first time on your PC Screen Appearance When you select the MINITAB option from the MINITAB 14 program group, or click on MINITAB 14 under RAS you will see the following screen.

More information

Logger Pro Resource Sheet

Logger Pro Resource Sheet Logger Pro Resource Sheet Entering and Editing Data Data Collection How to Begin How to Store Multiple Runs Data Analysis How to Scale a Graph How to Determine the X- and Y- Data Points on a Graph How

More information

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below.

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below. Graphing in Excel featuring Excel 2007 1 A spreadsheet can be a powerful tool for analyzing and graphing data, but it works completely differently from the graphing calculator that you re used to. If you

More information

WHEN SOFTWARE RESOURCES ARE LIMITED: EXCEL TIPS

WHEN SOFTWARE RESOURCES ARE LIMITED: EXCEL TIPS WHEN SOFTWARE RESOURCES ARE LIMITED: EXCEL TIPS A HANDOUT TO SUPPLEMENT SESSION W- 111 SRAI ANNUAL MEETING 2017 JUDY WILLIS ADMINISTRATOR OF GRADUATE RESEARCH ETHICS PROGRAMS SRAI ANNUAL MEETING OCTOBER

More information

SSC-Stat 2.18 Tutorial

SSC-Stat 2.18 Tutorial SSC-Stat 2.18 Tutorial by Roger Stern, Sandro Leidi, Colin Grayer, Cathy Garlick and Ian Dale Contents 1. Introduction 1 1.1. Data types 2 1.2. Sections of this guide 2 2. The data area 2 3. Simple descriptive

More information

Astra Scheduling Grids

Astra Scheduling Grids Astra Scheduling Grids To access the grids, click on the Scheduling Grids option from the Calendars tab. A default grid will be displayed as defined by the calendar permission within your role. Choosing

More information

ANALYSING CLIMATIC DATA USING GENSTAT FOR WINDOWS. Roger Stern and James Gallagher

ANALYSING CLIMATIC DATA USING GENSTAT FOR WINDOWS. Roger Stern and James Gallagher ANALYSING CLIMATIC DATA USING GENSTAT FOR WINDOWS Roger Stern and James Gallagher Statistical Services Centre The University of Reading THE UK MET OFFICE ISBN: 0-7049-9829-7 JUNE 2004 Contents CONTENTS

More information

A QUICK INTRODUCTION TO MINITAB

A QUICK INTRODUCTION TO MINITAB A QUICK INTRODUCTION TO MINITAB The Stern School Statistics Group uses Minitab Release 14 for Windows as its course software. This program was chosen specifically for use with courses B01.1305, C22.0103,

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

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Fathom Tutorial. Dynamic Statistical Software. for teachers of Ontario grades 7-10 mathematics courses

Fathom Tutorial. Dynamic Statistical Software. for teachers of Ontario grades 7-10 mathematics courses Fathom Tutorial Dynamic Statistical Software for teachers of Ontario grades 7-10 mathematics courses Please Return This Guide to the Presenter at the End of the Workshop if you would like an electronic

More information

Module 1: Introduction RStudio

Module 1: Introduction RStudio Module 1: Introduction RStudio Contents Page(s) Installing R and RStudio Software for Social Network Analysis 1-2 Introduction to R Language/ Syntax 3 Welcome to RStudio 4-14 A. The 4 Panes 5 B. Calculator

More information

Tips & Tricks for Microsoft Word

Tips & Tricks for Microsoft Word T 330 / 1 Discover Useful Hidden Features to Speed-up Your Work in Word For what should be a straightforward wordprocessing program, Microsoft Word has a staggering number of features. Many of these you

More information

COPYRIGHTED MATERIAL. Making Excel More Efficient

COPYRIGHTED MATERIAL. Making Excel More Efficient Making Excel More Efficient If you find yourself spending a major part of your day working with Excel, you can make those chores go faster and so make your overall work life more productive by making Excel

More information

Statistical Package for the Social Sciences INTRODUCTION TO SPSS SPSS for Windows Version 16.0: Its first version in 1968 In 1975.

Statistical Package for the Social Sciences INTRODUCTION TO SPSS SPSS for Windows Version 16.0: Its first version in 1968 In 1975. Statistical Package for the Social Sciences INTRODUCTION TO SPSS SPSS for Windows Version 16.0: Its first version in 1968 In 1975. SPSS Statistics were designed INTRODUCTION TO SPSS Objective About the

More information

Introduction to PascGalois JE (Java Edition)

Introduction to PascGalois JE (Java Edition) Introduction to PascGalois JE (Java Edition) So what is PascGalois JE? The PascGalois project was started in the late 1990 s as a new and innovative way to visualize concepts in an introductory abstract

More information

Microsoft Excel 2007

Microsoft Excel 2007 Microsoft Excel 2007 1 Excel is Microsoft s Spreadsheet program. Spreadsheets are often used as a method of displaying and manipulating groups of data in an effective manner. It was originally created

More information

Chapter 4. Microsoft Excel

Chapter 4. Microsoft Excel Chapter 4 Microsoft Excel Topic Introduction Spreadsheet Basic Screen Layout Modifying a Worksheet Formatting Cells Formulas and Functions Sorting and Filling Borders and Shading Charts Introduction A

More information

MIS0855: Data Science In-Class Exercise for Mar Creating Interactive Dashboards

MIS0855: Data Science In-Class Exercise for Mar Creating Interactive Dashboards MIS0855: Data Science In-Class Exercise for Mar 25-27 Creating Interactive Dashboards Objective: Create a dashboard with interactive data filtering using Tableau Learning Outcomes: Understand how to create

More information

Design and Analysis of Experiments Prof. Jhareswar Maiti Department of Industrial and Systems Engineering Indian Institute of Technology, Kharagpur

Design and Analysis of Experiments Prof. Jhareswar Maiti Department of Industrial and Systems Engineering Indian Institute of Technology, Kharagpur Design and Analysis of Experiments Prof. Jhareswar Maiti Department of Industrial and Systems Engineering Indian Institute of Technology, Kharagpur Lecture 59 Fractional Factorial Design using MINITAB

More information

1. Select a cell in the column you want to sort by. In this example, we will sort by Last Name.

1. Select a cell in the column you want to sort by. In this example, we will sort by Last Name. Excel 2010 Sorting Data Introduction Page 1 With over 17 billion cells in a single worksheet, Excel 2010 gives you the ability to work with an enormous amount of data. Arranging your data alphabetically,

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

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Mr. Kongmany Chaleunvong. GFMER - WHO - UNFPA - LAO PDR Training Course in Reproductive Health Research Vientiane, 22 October 2009

Mr. Kongmany Chaleunvong. GFMER - WHO - UNFPA - LAO PDR Training Course in Reproductive Health Research Vientiane, 22 October 2009 Mr. Kongmany Chaleunvong GFMER - WHO - UNFPA - LAO PDR Training Course in Reproductive Health Research Vientiane, 22 October 2009 1 Object of the Course Introduction to SPSS The basics of managing data

More information

1. Keeping Word Documents and Excel sheets with the customer.

1. Keeping Word Documents and Excel sheets with the customer. /////////////////////////Visual CLIP////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

More information