Data analysis manual for eye-tracking

Size: px
Start display at page:

Download "Data analysis manual for eye-tracking"

Transcription

1 Data analysis manual for eye-tracking for use with R / growth curve analysis (t.lentz@let.ru.nl) (tomlentz@gmail.com) Nijmegen, 13 October 2011 Analysis ET 1 Overview Steps Gather data Organise data Statistical analysis Data inspection Data modelling Specifically Tobii output Perl scripts R, Growth Curve Analysis, Mixed models Analysis ET 2

2 Tobii output: Lines of text Data properties: Recording date: 8/3/2011 Recording time : 8:50:53:468 (corresponds to time 0) Study: P Stragegy Subject: AbelG Recording: AbelG Screen resolution: 1280 x 1024 Coordinate unit: Pixels Filter settings: Eye: Average Fixation radius: 30 Min duration: 100 Tobii output: Lines of text Timestamp Number GazepointX (L) GazepointY (L) CamX (L) CamY (L) Distance (L) Pupil (L) Validity (L) GazepointX (R) GazepointY (R) CamX (R) CamY (R) Distance (R) Pupil (R) Validity (R) Fixation GazepointX GazepointY Event Event Key Data 1 Data 2 Description ShowAVI C1 xvid.avi

3 Using scripts Tobii measurement is a time point in a trial. Trial is participant item Every measurement to be anchored to time of trial (movie) enhanced with all trial information ( disk space hog ) Copy by hand or use a script. Analysis ET 5 Script Possibilities Customised scripts (with the structure just explained) One general script will be made available (soon, ask me) Tell me your wishes (now) Scripts run on Perl (try to install, then to learn) Analysis ET 6

4 My script(s) combinefixations.pl Process every fixation line (after header) of every file in a directory. Uses two additional files participant item Fixed assumptions about information Everything is text, i.e. readable and adaptable Perl: available for all platforms (often pre-installed) Analysis ET 7 Example Timestamp Number GazepointX (L) GazepointY (L) CamX (L) CamY (L) Distance (L) Pupil (L) Validity (L) GazepointX (R) GazepointY (R) CamX (R) CamY (R) Distance (R) Pupil (R) Validity (R) Fixation GazepointX GazepointY Event Event Key Data 1 Data 2 Description Participant Gender Difficulty Version CDIc CDIp Production Region Correct Targetword Condition AbelGCMD m SP SP a NA buiten NA koe d AbelGCMD m SP SP a NA buiten NA koe d

5 Script data sources Tobii data Careful! Perl can overwrite files without warning. Make a directory with a copy of the data. Make original write-only. Analysis ET 9 Script data sources Extra information Item trials starts with ShowAVI item name is movie name trials ends with next ShowAVI Participant one file, one participant name in preamble or file name Time 3 measurements every 50 ms: Analysis ET 10 Relative to movie to item

6 Script data sources Sources Files Make structured (Excel Save as CSV) files. Item ID (unique!), info, onset / time point Participant ID (unique!), gender, group... More than one onset is no problem: keep the value at the same column in the items file, use different item files for other analyses. Analysis ET 11 Script data sources Run the script Windows Uitvoeren/Run type cmd Mac / Unix Open terminal perl combinefixations resultsdir participants items output Analysis ET 12

7 Raw outcome Output script is text (tab separated) Open as spreadsheet Open in Excel, two ways: 1 Import data from file, or 2 Give extension.csv and open with Excel Check alignment Is every value in the right column? Analysis ET 13 R What is R? Open source Anyone can contribute to R. It is more flexible than closed proprietary packages. It is free! Type and ask Instead of point and click and menus, you type commands, asking exactly what you want. Object oriented The architecture of R is built around the concept of objects. Analysis ET 14

8 Syntax R syntax Functions Smallest unit of command: a function. Example: sin for sine. Function and objects A function object has a syntax: function(arguments). Argument types Arguments are objects. atoms numbers, characters, truth values complex files, vectors, matrices, functions, named atoms Analysis ET 15 Syntax Example: sine > Atomic argument example You can ask the function sin to calculate the sine of a half rad. This is not only an R function, but also a mathematical one. Hands on Needed: R installation, get it at r-project.org. Start R (click icon, or r in terminal window). You should see: R version ( ) Copyright (C) 2010 The R Foundation for Statistical Computing ISBN Platform: x86 64-apple-darwin9.8.0/x86 64 (64-bit)... Analysis ET 16

9 Syntax Example: sine At the R prompt If you type at the prompt: > sin R will tell you what the name refers to. Give it an argument: > sin(0.5) Now the answer appears: [1] The argument 0.5 is a number, interpreted as degrees. Analysis ET 17 Syntax Return Returning an object Functions usually return objects. Store with the operator ->. > sin(0.5) -> sineofahalf > sineofahalf [1] Objects Conceptually important! Have a name (give them one!) Have a content (other objects or atoms, combinations, function algorithms) Type name, get content (try pi) Analysis ET 18

10 Syntax More complicated functions Example: plot > plot(sin) Function takes function as argument. plot used range < 0 1 >. Improve: use optional arguments like xlim. > plot(sin, xlim = c(0,2*pi), xlab = "deg", ylab = "sine") Optional arguments These have a default value, normally adequate. HELP! > help(plot) Meaning of arguments, defaults of optional arguments. Analysis ET 19 Syntax Function syntax: recap function object optional =function opt.arg. = string argument argument return plot( sin, xlim =c(0,2*pi), xlab = "deg", ylab = "sine") Nested functions A function with arguments like c(0,2*pi) (concatenate) can be nested in another function like plot. The higher function takes the return value. pi is an object! Analysis ET 20

11 Data entry Entry Basic hygiene Open a text file for your commands and comments. Change R working directory with setwd("your dir") Import your data read.csv, read.table Nice trick: file.choose() returns file name read.csv(file.choose()), header = T) What went wrong? Analysis ET 21 Data entry Inspect the data Formats read.xx returns a dataframe, consisting of vectors. read.csv has default argument field separator text delimiter put it into a named object, e.g. data check first rows with head do not ask the contents but a summary Analysis ET 22

12 Graphical inspection Back to infant eye-tracking Reminder All fixations have been saved separately. The script calculates if they are correct (predefined region + item file) Rationale: dependent variable is correct fixation probability Time window Without looking at conditions in hypothesis, carve out pattern. Analysis ET 23 Graphical inspection Plotting grand mean Package sciplot Install package sciplot. > require(sciplot) lineplot.ci > lineplot.ci(timeonset, Correct +, data = data, legend = T, main = "Correct fixations (only fixations)", xlab = "Time since onset (ms)", ylab = "Proportion", ci.fun = function(x) c(mean(x), mean(x)), ylim = c(0,1), fix = T) Analysis ET 24

13 Picture Correct fixations (only fixations) Proportion Time since onset (ms) Graphical inspection Plotting grand mean lineplot.ci > lineplot.ci(timeonset, Correct, data = data, legend = T, main = "Correct fixations (only fixations)", xlab = "Time since onset (ms)", ylab = "Proportion", ci.fun = function(x) c(mean(x), mean(x)), ylim = c(0.2,0.8), subset = (TimeOnset > -700 TimeOnset < 1300 ), fix = T) Analysis ET 26

14 Picture Correct fixations (only fixations) Proportion Time since onset (ms) Graphical inspection Plotting per condition lineplot.ci > lineplot.ci(timeonset, Correct, group = Type, data = windowfix, legend = T, col = colors, main = "Correct fixations (only fixations)", xlab = "Time since onset (ms)", ylab = "Proportion", ci.fun = function(x) c(mean(x), mean(x)), ylim = c(0,1), fix = T) Analysis ET 28

15 Picture Correct fixations (only fixations) Proportion IC SP Time since onset (ms) Growth curves on fixations Categorical data: logistic regression Mixed models for binomial data (Jaeger, 2008) 1 (looking/not looking) are possible Per time point, you can only look (1, true, succes) or not look (0). No deviation, outliers, etc. Not a continuous variable 1 T. F. Jaeger. Categorical data analysis: Away from ANOVAs (transformation or not) and towards logit mixed models Journal of Memory and Language, 59(4): , Analysis ET 30

16 Growth curves on fixations Growth curves Growth curves are traditionally used for development over months or years (Mirman, Dixon, & Magnuson, 2008). 2 Multiple levels of time (Barr, 2008). 3 Capture spike and delays 2 D. Mirman, J. A. Dixon, and J. S. Magnuson. Statistical and computational models of the visual world paradigm: Growth curves and individual differences. Journal of Memory and Language, 59(4): , D. J. Barr. Analyzing visual world eyetracking data using multilevel logistic regression. Journal of Memory and Language, 59(4): , Analysis ET 31 Growth curve and logistic regression Advantages Better fit: more sensitive more conservative Flexible New standard? Read Journal of Memory and Language, 59(4) See danmirman.org/gca Analysis ET 32

17 Growth curve and logistic regression Time components Number of components Polynomials: t 0, t 1,... t n Number of bends + 1 Improving model fit for grand mean Analysis ET 33 Example: three/four levels Meaning of components 0 Height of the line, independent of time 1 Increase or decrease, linear 2 Peaking, quadratic 3 Bending back, cubic Add to dataframe Make polynomial time vectors, for the window.

18 1 t[, 1] TIME 2 t[, 2] TIME

19 3 t[, 3] TIME Growth curve and logistic regression Make Mixed Model No conditions m.base < lmer(correct 1 + (1 Gender/Participant) + (1), data = windowfix, family = binomial ) m.base1 < lmer(correct ot1 + (1 Gender/Participant) + (1 Targetword), data = windowfix, family = binomial ) m.base2 < lmer(correct ot1 + ot2 + (1/Participant) + (1 Targetword), data = windowfix, family = binomial ) m.base3 < lmer(correct ot1 + ot2 + ot3 + (1/Participant) + (1 Targetword), data = windowfix, family = binomial ) Analysis ET 38

20 Growth curve and logistic regression Barr, D. J.(2008). Analyzing visual world eyetracking data using multilevel logistic regression. Journal of Memory and Language, 59, Jaeger, T. F.(2008). Categorical data analysis: Away from ANOVAs (transformation or not) and towards logit mixed models. Journal of Memory and Language, 59(4), Mirman, D., Dixon, J. A., & Magnuson, J. S.(2008). Statistical and computational models of the visual world paradigm: Growth curves and individual differences. Journal of Memory and Language, 59(4), Analysis ET 38

Tutorial 2: Reading and Manipulating Files Jason Pienaar and Tom Miller

Tutorial 2: Reading and Manipulating Files Jason Pienaar and Tom Miller Tutorial 2: Reading and Manipulating Files Jason Pienaar and Tom Miller Most of you want to use R to analyze data. However, while R does have a data editor, other programs such as excel are often better

More information

5 Correlation and Data Exploration

5 Correlation and Data Exploration 5 Correlation and Data Exploration Correlation In Unit 3, we did some correlation analyses of data from studies related to the acquisition order and acquisition difficulty of English morphemes by both

More information

Graphics in R. Biostatistics 615/815

Graphics in R. Biostatistics 615/815 Graphics in R Biostatistics 615/815 Last Lecture Introduction to R Programming Controlling Loops Defining your own functions Today Introduction to Graphics in R Examples of commonly used graphics functions

More information

Simple Predictive Analytics Curtis Seare

Simple Predictive Analytics Curtis Seare Using Excel to Solve Business Problems: Simple Predictive Analytics Curtis Seare Copyright: Vault Analytics July 2010 Contents Section I: Background Information Why use Predictive Analytics? How to use

More information

Polynomial Neural Network Discovery Client User Guide

Polynomial Neural Network Discovery Client User Guide Polynomial Neural Network Discovery Client User Guide Version 1.3 Table of contents Table of contents...2 1. Introduction...3 1.1 Overview...3 1.2 PNN algorithm principles...3 1.3 Additional criteria...3

More information

Learning Objective. Purpose The purpose of this activity is to give you the opportunity to learn how to set up a database and upload data.

Learning Objective. Purpose The purpose of this activity is to give you the opportunity to learn how to set up a database and upload data. Creating a Simple Database: Now with PostgreSQL 8 We are going to do the simple exercise of creating a database, then uploading the TriMet files from Activity 6. In the next activity, you will use SQL

More information

Scatter Plots with Error Bars

Scatter Plots with Error Bars Chapter 165 Scatter Plots with Error Bars Introduction The procedure extends the capability of the basic scatter plot by allowing you to plot the variability in Y and X corresponding to each point. Each

More information

Package gazepath. April 1, 2015

Package gazepath. April 1, 2015 Type Package Package gazepath April 1, 2015 Title Gazepath Transforms Eye-Tracking Data into Fixations and Saccades Version 1.0 Date 2015-03-03 Author Daan van Renswoude Maintainer Daan van Renswoude

More information

SPSS: Getting Started. For Windows

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

More information

Getting started with qplot

Getting started with qplot Chapter 2 Getting started with qplot 2.1 Introduction In this chapter, you will learn to make a wide variety of plots with your first ggplot2 function, qplot(), short for quick plot. qplot makes it easy

More information

2: Entering Data. Open SPSS and follow along as your read this description.

2: Entering Data. Open SPSS and follow along as your read this description. 2: Entering Data Objectives Understand the logic of data files Create data files and enter data Insert cases and variables Merge data files Read data into SPSS from other sources The Logic of Data Files

More information

Beginner s Matlab Tutorial

Beginner s Matlab Tutorial Christopher Lum lum@u.washington.edu Introduction Beginner s Matlab Tutorial This document is designed to act as a tutorial for an individual who has had no prior experience with Matlab. For any questions

More information

There are six different windows that can be opened when using SPSS. The following will give a description of each of them.

There are six different windows that can be opened when using SPSS. The following will give a description of each of them. SPSS Basics Tutorial 1: SPSS Windows There are six different windows that can be opened when using SPSS. The following will give a description of each of them. The Data Editor The Data Editor is a spreadsheet

More information

TIBCO Spotfire Business Author Essentials Quick Reference Guide. Table of contents:

TIBCO Spotfire Business Author Essentials Quick Reference Guide. Table of contents: Table of contents: Access Data for Analysis Data file types Format assumptions Data from Excel Information links Add multiple data tables Create & Interpret Visualizations Table Pie Chart Cross Table Treemap

More information

Engineering Problem Solving and Excel. EGN 1006 Introduction to Engineering

Engineering Problem Solving and Excel. EGN 1006 Introduction to Engineering Engineering Problem Solving and Excel EGN 1006 Introduction to Engineering Mathematical Solution Procedures Commonly Used in Engineering Analysis Data Analysis Techniques (Statistics) Curve Fitting techniques

More information

What's New in ADP Reporting?

What's New in ADP Reporting? What's New in ADP Reporting? Welcome to the latest version of ADP Reporting! This release includes the following new features and enhancements. Use the links below to learn more about each one. What's

More information

R Commander Tutorial

R Commander Tutorial R Commander Tutorial Introduction R is a powerful, freely available software package that allows analyzing and graphing data. However, for somebody who does not frequently use statistical software packages,

More information

Lab 13: Logistic Regression

Lab 13: Logistic Regression Lab 13: Logistic Regression Spam Emails Today we will be working with a corpus of emails received by a single gmail account over the first three months of 2012. Just like any other email address this account

More information

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

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

More information

An R Tutorial. 1. Starting Out

An R Tutorial. 1. Starting Out An R Tutorial 1. Starting Out R is an interactive environment for statistical computing and graphics. This tutorial will assume usage of R 2.0.0 on a PC. However, except in rare situations, these commands

More information

Analyzing Research Data Using Excel

Analyzing Research Data Using Excel Analyzing Research Data Using Excel Fraser Health Authority, 2012 The Fraser Health Authority ( FH ) authorizes the use, reproduction and/or modification of this publication for purposes other than commercial

More information

SPSS Explore procedure

SPSS Explore procedure SPSS Explore procedure One useful function in SPSS is the Explore procedure, which will produce histograms, boxplots, stem-and-leaf plots and extensive descriptive statistics. To run the Explore procedure,

More information

SPSS 12 Data Analysis Basics Linda E. Lucek, Ed.D. LindaL@niu.edu 815-753-9516

SPSS 12 Data Analysis Basics Linda E. Lucek, Ed.D. LindaL@niu.edu 815-753-9516 SPSS 12 Data Analysis Basics Linda E. Lucek, Ed.D. LindaL@niu.edu 815-753-9516 Technical Advisory Group Customer Support Services Northern Illinois University 120 Swen Parson Hall DeKalb, IL 60115 SPSS

More information

Introduction Course in SPSS - Evening 1

Introduction Course in SPSS - Evening 1 ETH Zürich Seminar für Statistik Introduction Course in SPSS - Evening 1 Seminar für Statistik, ETH Zürich All data used during the course can be downloaded from the following ftp server: ftp://stat.ethz.ch/u/sfs/spsskurs/

More information

Introduction to R Statistical Software

Introduction to R Statistical Software Introduction to R Statistical Software Anthony (Tony) R. Olsen USEPA ORD NHEERL Western Ecology Division Corvallis, OR 97333 (541) 754-4790 Olsen.Tony@epa.gov What is R? A language and environment for

More information

Introduction to R Statistical Software

Introduction to R Statistical Software Introduction to R Statistical Software Anthony (Tony) R. Olsen USEPA ORD NHEERL Western Ecology Division Corvallis, OR 97333 (541) 754-4790 Olsen.Tony@epa.gov What is R? A language and environment for

More information

Exploratory Data Analysis and Plotting

Exploratory Data Analysis and Plotting Exploratory Data Analysis and Plotting The purpose of this handout is to introduce you to working with and manipulating data in R, as well as how you can begin to create figures from the ground up. 1 Importing

More information

Using R for Windows and Macintosh

Using R for Windows and Macintosh 2010 Using R for Windows and Macintosh R is the most commonly used statistical package among researchers in Statistics. It is freely distributed open source software. For detailed information about downloading

More information

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

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

More information

Dataframes. Lecture 8. Nicholas Christian BIOST 2094 Spring 2011

Dataframes. Lecture 8. Nicholas Christian BIOST 2094 Spring 2011 Dataframes Lecture 8 Nicholas Christian BIOST 2094 Spring 2011 Outline 1. Importing and exporting data 2. Tools for preparing and cleaning datasets Sorting Duplicates First entry Merging Reshaping Missing

More information

VHDL Test Bench Tutorial

VHDL Test Bench Tutorial University of Pennsylvania Department of Electrical and Systems Engineering ESE171 - Digital Design Laboratory VHDL Test Bench Tutorial Purpose The goal of this tutorial is to demonstrate how to automate

More information

TIBCO Spotfire Automation Services 6.5. User s Manual

TIBCO Spotfire Automation Services 6.5. User s Manual TIBCO Spotfire Automation Services 6.5 User s Manual Revision date: 17 April 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

Summary of R software commands used to generate bootstrap and permutation test output and figures in Chapter 16

Summary of R software commands used to generate bootstrap and permutation test output and figures in Chapter 16 Summary of R software commands used to generate bootstrap and permutation test output and figures in Chapter 16 Since R is command line driven and the primary software of Chapter 16, this document details

More information

Eyetracker Output Utility

Eyetracker Output Utility Eyetracker Output Utility Latest version: 1.27, 22 July 2016 Walter van Heuven Please note that this program is still under development Email: walter.vanheuven@nottingham.ac.uk Website: http://www.psychology.nottingham.ac.uk/staff/wvh/eou

More information

Installing R and the psych package

Installing R and the psych package Installing R and the psych package William Revelle Department of Psychology Northwestern University August 17, 2014 Contents 1 Overview of this and related documents 2 2 Install R and relevant packages

More information

IBM Tivoli Monitoring Version 6.3 Fix Pack 2. Infrastructure Management Dashboards for Servers Reference

IBM Tivoli Monitoring Version 6.3 Fix Pack 2. Infrastructure Management Dashboards for Servers Reference IBM Tivoli Monitoring Version 6.3 Fix Pack 2 Infrastructure Management Dashboards for Servers Reference IBM Tivoli Monitoring Version 6.3 Fix Pack 2 Infrastructure Management Dashboards for Servers Reference

More information

Projects Involving Statistics (& SPSS)

Projects Involving Statistics (& SPSS) Projects Involving Statistics (& SPSS) Academic Skills Advice Starting a project which involves using statistics can feel confusing as there seems to be many different things you can do (charts, graphs,

More information

Getting started with the Stata

Getting started with the Stata Getting started with the Stata 1. Begin by going to a Columbia Computer Labs. 2. Getting started Your first Stata session. Begin by starting Stata on your computer. Using a PC: 1. Click on start menu 2.

More information

3 What s New in Excel 2007

3 What s New in Excel 2007 3 What s New in Excel 2007 3.1 Overview of Excel 2007 Microsoft Office Excel 2007 is a spreadsheet program that enables you to enter, manipulate, calculate, and chart data. An Excel file is referred to

More information

STATISTICA Formula Guide: Logistic Regression. Table of Contents

STATISTICA Formula Guide: Logistic Regression. Table of Contents : Table of Contents... 1 Overview of Model... 1 Dispersion... 2 Parameterization... 3 Sigma-Restricted Model... 3 Overparameterized Model... 4 Reference Coding... 4 Model Summary (Summary Tab)... 5 Summary

More information

SPSS Introduction. Yi Li

SPSS Introduction. Yi Li SPSS Introduction Yi Li Note: The report is based on the websites below http://glimo.vub.ac.be/downloads/eng_spss_basic.pdf http://academic.udayton.edu/gregelvers/psy216/spss http://www.nursing.ucdenver.edu/pdf/factoranalysishowto.pdf

More information

Microsoft Access Rollup Procedure for Microsoft Office 2007. 2. Click on Blank Database and name it something appropriate.

Microsoft Access Rollup Procedure for Microsoft Office 2007. 2. Click on Blank Database and name it something appropriate. Microsoft Access Rollup Procedure for Microsoft Office 2007 Note: You will need tax form information in an existing Excel spreadsheet prior to beginning this tutorial. 1. Start Microsoft access 2007. 2.

More information

Stored Documents and the FileCabinet

Stored Documents and the FileCabinet Stored Documents and the FileCabinet Introduction The stored document features have been greatly enhanced to allow easier storage and retrieval of a clinic s electronic documents. Individual or multiple

More information

edgebooks Quick Start Guide 4

edgebooks Quick Start Guide 4 edgebooks Quick Start Guide 4 memories made easy SECTION 1: Installing FotoFusion Please follow the steps in this section to install FotoFusion to your computer. 1. Please close all open applications prior

More information

How to Make the Most of Excel Spreadsheets

How to Make the Most of Excel Spreadsheets How to Make the Most of Excel Spreadsheets Analyzing data is often easier when it s in an Excel spreadsheet rather than a PDF for example, you can filter to view just a particular grade, sort to view which

More information

Excel Companion. (Profit Embedded PHD) User's Guide

Excel Companion. (Profit Embedded PHD) User's Guide Excel Companion (Profit Embedded PHD) User's Guide Excel Companion (Profit Embedded PHD) User's Guide Copyright, Notices, and Trademarks Copyright, Notices, and Trademarks Honeywell Inc. 1998 2001. All

More information

NDSR Utilities. Creating Backup Files. Chapter 9

NDSR Utilities. Creating Backup Files. Chapter 9 Chapter 9 NDSR Utilities NDSR utilities include various backup and restore features, ways to generate output files, and methods of importing and exporting Header tab information. This chapter describes:

More information

Statistical Models in R

Statistical Models in R Statistical Models in R Some Examples Steven Buechler Department of Mathematics 276B Hurley Hall; 1-6233 Fall, 2007 Outline Statistical Models Linear Models in R Regression Regression analysis is the appropriate

More information

Introduction to Matlab

Introduction to Matlab Introduction to Matlab Social Science Research Lab American University, Washington, D.C. Web. www.american.edu/provost/ctrl/pclabs.cfm Tel. x3862 Email. SSRL@American.edu Course Objective This course provides

More information

Using Excel for Statistics Tips and Warnings

Using Excel for Statistics Tips and Warnings Using Excel for Statistics Tips and Warnings November 2000 University of Reading Statistical Services Centre Biometrics Advisory and Support Service to DFID Contents 1. Introduction 3 1.1 Data Entry and

More information

Chapter 6: The Information Function 129. CHAPTER 7 Test Calibration

Chapter 6: The Information Function 129. CHAPTER 7 Test Calibration Chapter 6: The Information Function 129 CHAPTER 7 Test Calibration 130 Chapter 7: Test Calibration CHAPTER 7 Test Calibration For didactic purposes, all of the preceding chapters have assumed that the

More information

UCINET Visualization and Quantitative Analysis Tutorial

UCINET Visualization and Quantitative Analysis Tutorial UCINET Visualization and Quantitative Analysis Tutorial Session 1 Network Visualization Session 2 Quantitative Techniques Page 2 An Overview of UCINET (6.437) Page 3 Transferring Data from Excel (From

More information

OECD.Stat Web Browser User Guide

OECD.Stat Web Browser User Guide OECD.Stat Web Browser User Guide May 2013 May 2013 1 p.10 Search by keyword across themes and datasets p.31 View and save combined queries p.11 Customise dimensions: select variables, change table layout;

More information

Shark Talent Management System Performance Reports

Shark Talent Management System Performance Reports Shark Talent Management System Performance Reports Goals Reports Goal Details Report. Page 2 Goal Exception Report... Page 4 Goal Hierarchy Report. Page 6 Goal Progress Report.. Page 8 Goal Status Report...

More information

Gentran Integration Suite. Archiving and Purging. Version 4.2

Gentran Integration Suite. Archiving and Purging. Version 4.2 Gentran Integration Suite Archiving and Purging Version 4.2 Copyright 2007 Sterling Commerce, Inc. All rights reserved. Additional copyright information is located on the Gentran Integration Suite Documentation

More information

SAS Analyst for Windows Tutorial

SAS Analyst for Windows Tutorial Updated: August 2012 Table of Contents Section 1: Introduction... 3 1.1 About this Document... 3 1.2 Introduction to Version 8 of SAS... 3 Section 2: An Overview of SAS V.8 for Windows... 3 2.1 Navigating

More information

The KaleidaGraph Guide to Curve Fitting

The KaleidaGraph Guide to Curve Fitting The KaleidaGraph Guide to Curve Fitting Contents Chapter 1 Curve Fitting Overview 1.1 Purpose of Curve Fitting... 5 1.2 Types of Curve Fits... 5 Least Squares Curve Fits... 5 Nonlinear Curve Fits... 6

More information

Plotting Data with Microsoft Excel

Plotting Data with Microsoft Excel Plotting Data with Microsoft Excel Here is an example of an attempt to plot parametric data in a scientifically meaningful way, using Microsoft Excel. This example describes an experience using the Office

More information

Statgraphics Getting started

Statgraphics Getting started Statgraphics Getting started The aim of this exercise is to introduce you to some of the basic features of the Statgraphics software. Starting Statgraphics 1. Log in to your PC, using the usual procedure

More information

Getting your data into R

Getting your data into R 1 Getting your data into R How to load and export data Dr Simon R. White MRC Biostatistics Unit, Cambridge 2012 2 Part I Case study: Reading data into R and getting output from R 3 Data formats Not just

More information

Rweb: Web-based Statistical Analysis

Rweb: Web-based Statistical Analysis Rweb: Web-based Statistical Analysis Jeff Banfield Department of Mathematical Science Montana State University Bozeman, MT 59717 Abstract Rweb is a freely accessible statistical analysis environment that

More information

Psychology 205: Research Methods in Psychology

Psychology 205: Research Methods in Psychology Psychology 205: Research Methods in Psychology Using R to analyze the data for study 2 Department of Psychology Northwestern University Evanston, Illinois USA November, 2012 1 / 38 Outline 1 Getting ready

More information

0 Introduction to Data Analysis Using an Excel Spreadsheet

0 Introduction to Data Analysis Using an Excel Spreadsheet Experiment 0 Introduction to Data Analysis Using an Excel Spreadsheet I. Purpose The purpose of this introductory lab is to teach you a few basic things about how to use an EXCEL 2010 spreadsheet to do

More information

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

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

More information

An Introduction to SPSS. Workshop Session conducted by: Dr. Cyndi Garvan Grace-Anne Jackman

An Introduction to SPSS. Workshop Session conducted by: Dr. Cyndi Garvan Grace-Anne Jackman An Introduction to SPSS Workshop Session conducted by: Dr. Cyndi Garvan Grace-Anne Jackman Topics to be Covered Starting and Entering SPSS Main Features of SPSS Entering and Saving Data in SPSS Importing

More information

Eventia Log Parsing Editor 1.0 Administration Guide

Eventia Log Parsing Editor 1.0 Administration Guide Eventia Log Parsing Editor 1.0 Administration Guide Revised: November 28, 2007 In This Document Overview page 2 Installation and Supported Platforms page 4 Menus and Main Window page 5 Creating Parsing

More information

Advanced Excel 10/20/2011 1

Advanced Excel 10/20/2011 1 Advanced Excel Data Validation Excel has a feature called Data Validation, which will allow you to control what kind of information is typed into cells. 1. Select the cell(s) you wish to control. 2. Click

More information

Macros in Word & Excel

Macros in Word & Excel Macros in Word & Excel Description: If you perform a task repeatedly in Word or Excel, you can automate the task by using a macro. A macro is a series of steps that is grouped together as a single step

More information

Each function call carries out a single task associated with drawing the graph.

Each function call carries out a single task associated with drawing the graph. Chapter 3 Graphics with R 3.1 Low-Level Graphics R has extensive facilities for producing graphs. There are both low- and high-level graphics facilities. The low-level graphics facilities provide basic

More information

IBM SPSS Direct Marketing 23

IBM SPSS Direct Marketing 23 IBM SPSS Direct Marketing 23 Note Before using this information and the product it supports, read the information in Notices on page 25. Product Information This edition applies to version 23, release

More information

Prof. Pietro Ducange Students Tutor and Practical Classes Course of Business Intelligence 2014 http://www.iet.unipi.it/p.ducange/esercitazionibi/

Prof. Pietro Ducange Students Tutor and Practical Classes Course of Business Intelligence 2014 http://www.iet.unipi.it/p.ducange/esercitazionibi/ Prof. Pietro Ducange Students Tutor and Practical Classes Course of Business Intelligence 2014 http://www.iet.unipi.it/p.ducange/esercitazionibi/ Email: p.ducange@iet.unipi.it Office: Dipartimento di Ingegneria

More information

USER MANUAL (PRO-CURO LITE, PRO & ENT) [SUPPLIED FOR VERSION 3]

USER MANUAL (PRO-CURO LITE, PRO & ENT) [SUPPLIED FOR VERSION 3] Pro-curo Software Ltd USER MANUAL (PRO-CURO LITE, PRO & ENT) [SUPPLIED FOR VERSION 3] CONTENTS Everyday use... 3 Logging on... 4 Main Screen... 5 Adding locations... 6 Working with locations... 7 Duplicate...

More information

Microsoft Excel 2010 Part 3: Advanced Excel

Microsoft Excel 2010 Part 3: Advanced Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting

More information

CSC 120: Computer Science for the Sciences (R section)

CSC 120: Computer Science for the Sciences (R section) CSC 120: Computer Science for the Sciences (R section) Radford M. Neal, University of Toronto, 2015 http://www.cs.utoronto.ca/ radford/csc120/ Week 2 Typing Stuff into R Can be Good... You can learn a

More information

IBM SPSS Direct Marketing 22

IBM SPSS Direct Marketing 22 IBM SPSS Direct Marketing 22 Note Before using this information and the product it supports, read the information in Notices on page 25. Product Information This edition applies to version 22, release

More information

SPSS Manual for Introductory Applied Statistics: A Variable Approach

SPSS Manual for Introductory Applied Statistics: A Variable Approach SPSS Manual for Introductory Applied Statistics: A Variable Approach John Gabrosek Department of Statistics Grand Valley State University Allendale, MI USA August 2013 2 Copyright 2013 John Gabrosek. All

More information

1 Topic. 2 Scilab. 2.1 What is Scilab?

1 Topic. 2 Scilab. 2.1 What is Scilab? 1 Topic Data Mining with Scilab. I know the name "Scilab" for a long time (http://www.scilab.org/en). For me, it is a tool for numerical analysis. It seemed not interesting in the context of the statistical

More information

Graphing Parabolas With Microsoft Excel

Graphing Parabolas With Microsoft Excel Graphing Parabolas With Microsoft Excel Mr. Clausen Algebra 2 California State Standard for Algebra 2 #10.0: Students graph quadratic functions and determine the maxima, minima, and zeros of the function.

More information

Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller

Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller Getting to know the data An important first step before performing any kind of statistical analysis is to familiarize

More information

Example: Credit card default, we may be more interested in predicting the probabilty of a default than classifying individuals as default or not.

Example: Credit card default, we may be more interested in predicting the probabilty of a default than classifying individuals as default or not. Statistical Learning: Chapter 4 Classification 4.1 Introduction Supervised learning with a categorical (Qualitative) response Notation: - Feature vector X, - qualitative response Y, taking values in C

More information

SES Project v 9.0 SES/CAESAR QUERY TOOL. Running and Editing Queries. PS Query

SES Project v 9.0 SES/CAESAR QUERY TOOL. Running and Editing Queries. PS Query SES Project v 9.0 SES/CAESAR QUERY TOOL Running and Editing Queries PS Query Table Of Contents I - Introduction to Query:... 3 PeopleSoft Query Overview:... 3 Query Terminology:... 3 Navigation to Query

More information

FINANCIAL INTEGRATION UTILITY GUIDE

FINANCIAL INTEGRATION UTILITY GUIDE ENTERPRISE EDITION FINANCIAL INTEGRATION UTILITY GUIDE YARDI SYSTEMS, INC. DISCLAIMERS & COPYRIGHTS This document, presentation and/or video (collectively, "document") is protected by copyright, trademark

More information

Alliance Payroll Services, Inc. Millennium Report Writer

Alliance Payroll Services, Inc. Millennium Report Writer Alliance Payroll Services, Inc. Millennium Report Writer Introduction to Millennium Table of Contents Table of Contents Symbols Used in this Manual Chapter 1 - Overview of Report Writer Tool Accessing

More information

Importing and Exporting With SPSS for Windows 17 TUT 117

Importing and Exporting With SPSS for Windows 17 TUT 117 Information Systems Services Importing and Exporting With TUT 117 Version 2.0 (Nov 2009) Contents 1. Introduction... 3 1.1 Aim of this Document... 3 2. Importing Data from Other Sources... 3 2.1 Reading

More information

A Handbook of Statistical Analyses Using R. Brian S. Everitt and Torsten Hothorn

A Handbook of Statistical Analyses Using R. Brian S. Everitt and Torsten Hothorn A Handbook of Statistical Analyses Using R Brian S. Everitt and Torsten Hothorn CHAPTER 6 Logistic Regression and Generalised Linear Models: Blood Screening, Women s Role in Society, and Colonic Polyps

More information

COLLABORATION NAVIGATING CMiC

COLLABORATION NAVIGATING CMiC Reference Guide covers the following items: How to login Launching applications and their typical action buttons Querying & filtering log views Export log views to Excel User Profile Update info / Change

More information

Using Adobe Dreamweaver CS4 (10.0)

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

More information

Topography of an Origin Project and Workspace

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

More information

G563 Quantitative Paleontology. SQL databases. An introduction. Department of Geological Sciences Indiana University. (c) 2012, P.

G563 Quantitative Paleontology. SQL databases. An introduction. Department of Geological Sciences Indiana University. (c) 2012, P. SQL databases An introduction AMP: Apache, mysql, PHP This installations installs the Apache webserver, the PHP scripting language, and the mysql database on your computer: Apache: runs in the background

More information

How to create and personalize a PDF portfolio

How to create and personalize a PDF portfolio How to create and personalize a PDF portfolio Creating and organizing a PDF portfolio is a simple process as simple as dragging and dropping files from one folder to another. To drag files into an empty

More information

ELFRING FONTS UPC BAR CODES

ELFRING FONTS UPC BAR CODES ELFRING FONTS UPC BAR CODES This package includes five UPC-A and five UPC-E bar code fonts in both TrueType and PostScript formats, a Windows utility, BarUPC, which helps you make bar codes, and Visual

More information

Intermediate PowerPoint

Intermediate PowerPoint Intermediate PowerPoint Charts and Templates By: Jim Waddell Last modified: January 2002 Topics to be covered: Creating Charts 2 Creating the chart. 2 Line Charts and Scatter Plots 4 Making a Line Chart.

More information

Basic Import Utility User Guide

Basic Import Utility User Guide 2013 Basic Import Utility User Guide PERPETUAL INNOVATION Lenel OnGuard 2013 Basic Import Utility User Guide, product version 6.6 This guide is item number DOC-101, revision 3.003, July 2012 Copyright

More information

Introduction to SPSS 16.0

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

More information

Data analysis and regression in Stata

Data analysis and regression in Stata Data analysis and regression in Stata This handout shows how the weekly beer sales series might be analyzed with Stata (the software package now used for teaching stats at Kellogg), for purposes of comparing

More information

User Manual V1.3. NCB File Converter. @alahlincb. /alahlincb. 9 2000 1000 www.alahli.com

User Manual V1.3. NCB File Converter. @alahlincb. /alahlincb. 9 2000 1000 www.alahli.com User Manual V1.3 NCB File Converter @alahlincb /alahlincb 9 2000 1000 www.alahli.com The National Commercial Bank File Converter User Manual Copyright 2013 The National Commercial Bank Page 2 of 44 Table

More information

Computational Assignment 4: Discriminant Analysis

Computational Assignment 4: Discriminant Analysis Computational Assignment 4: Discriminant Analysis -Written by James Wilson -Edited by Andrew Nobel In this assignment, we will investigate running Fisher s Discriminant analysis in R. This is a powerful

More information

Getting Started with R and RStudio 1

Getting Started with R and RStudio 1 Getting Started with R and RStudio 1 1 What is R? R is a system for statistical computation and graphics. It is the statistical system that is used in Mathematics 241, Engineering Statistics, for the following

More information

SPSS INSTRUCTION CHAPTER 1

SPSS INSTRUCTION CHAPTER 1 SPSS INSTRUCTION CHAPTER 1 Performing the data manipulations described in Section 1.4 of the chapter require minimal computations, easily handled with a pencil, sheet of paper, and a calculator. However,

More information

Microsoft Excel Tutorial

Microsoft Excel Tutorial Microsoft Excel Tutorial Microsoft Excel spreadsheets are a powerful and easy to use tool to record, plot and analyze experimental data. Excel is commonly used by engineers to tackle sophisticated computations

More information