Package saccades. March 18, 2015
|
|
|
- Leonard Gregory
- 9 years ago
- Views:
Transcription
1 Type Package Title Detection of Fixations in Eye-Tracking Data Version Date Package saccades March 18, 2015 Functions for detecting eye fixations in raw eye-tracking data. The detection is done using a velocity-based algorithm for saccade detection proposed by Ralf Engbert and Reinhold Kliegl in The algorithm labels segments as saccades when the velocity of the eye movement exceeds a certain threshold. Anything between two saccades is considered a fixation. Thus the algorithm is not appropriate for data containing episodes of smooth pursuit eye movements. License GPL-2 URL BugReports Depends R (>= 2.10), zoom Author Titus von der Malsburg [aut, cph, cre] Maintainer NeedsCompilation no Repository CRAN Date/Publication :02:18 R topics documented: calculate.summary detect.fixations diagnostic.plot fixations saccades samples Index 8 1
2 2 calculate.summary calculate.summary Calculate Summary Statistics for a Set of Fixations. Calculates summary statistics about the trials and fixations in the given data frame. calculate.summary(fixations) Arguments fixations a data frame containing the fixations that were detected in the samples. See detect.fixations for details about the format. Value A data frame containing the statistics. Details Calculates the number of trials, the average duration of trials, the average number of fixations in trials, the average duration of the fixations, the average spatial dispersion in the fixations, and the average peak velocity that occurred during fixations. Where appropriate standard deviations are given as well. Use round to obtain a more readable version of the resulting data frame. See Also diagnostic.plot, detect.fixations Examples data(fixations) stats <- calculate.summary(fixations) round(stats, digits=2)
3 detect.fixations 3 detect.fixations Detect Fixations in a Stream of Raw Eye-Tracking Samples Takes a data frame containing raw eye-tracking samples and returns a data frame containing fixations. detect.fixations(samples, lambda = 15, smooth.coordinates = T, smooth.saccades = T) Arguments Value samples a data frame containing the raw samples as recorded by the eye-tracker. This data frame has four columns: time: the time at which the sample was recorded trial: the trial to which the sample belongs x: the x-coordinate of the sample y: the y-coordinate of the sample Samples have to be listed in chronological order. The velocity calculations assume that the sampling frequency is constant. lambda a parameter for tuning the saccade detection. It specifies which multiple of the standard deviation of the velocity distribution should be used as the detection threshold. smooth.coordinates logical. If true the x- and y-coordinates will be smoothed using a moving average with window size 3 prior to saccade detection. smooth.saccades logical. If true, consecutive saccades that are separated only by a few samples will be joined. This avoids the situation where swing-backs at the end of longer saccades are recognized as separate saccades. Whether this works well, depends to some degree on the sampling rate of the eye-tracker. If the sampling rate is very high, the gaps between the main saccade and the swing-back might become too large and look like genuine fixations. Likewise, if the sampling frequency is very low, genuine fixations may be regarded as spurious. Both cases are unlikely to occur with current eye-trackers. a data frame containing the detected fixations. This data frame has the following columns: trial start the trial to which the fixation belongs the time at which the fixation started
4 4 detect.fixations end x y sd.x sd.y peak.vx peak.vy dur the time at which the fixation ended the x-coordinate of the fixation the y-coordinate of the fixation the standard deviation of the sample x-coordinates within the fixation the standard deviation of the sample y-coordinates within the fixation the horizontal peak velocity that was reached within the fixation the vertical peak velocity that was reached within the fixation the duration of the fixation Details This function uses a velocity-based detection algorithm for saccades proposed by Engbert and Kliegl. Anything between two saccades is considered to be a fixation. Thus, the algorithm is not suitable for data sets containing episodes of smooth pursuit eye movements. References Ralf Engbert, Reinhold Kliegl: Microsaccades uncover the orientation of covert attention, Vision Research, See Also diagnostic.plot, calculate.summary Examples data(samples) head(samples) fixations <- detect.fixations(samples) head(fixations) ## Not run: first.trial <- samples$trial[1] first.trial.samples <- subset(samples, trial==first.trial) first.trial.fixations <- subset(fixations, trial==first.trial) with(first.trial.samples, plot(x, y, pch=20, cex=0.2, col="red")) with(first.trial.fixations, points(x, y, cex=1+sqrt(dur/10000))) ## End(Not run)
5 diagnostic.plot 5 diagnostic.plot Interactive Diagnostic Plot of Samples and Fixations Shows the raw samples and the detected fixations in an interactive plot. This plot can be used to screen the data and to diagnose problems with the fixation detection. diagnostic.plot(samples, fixations) Arguments samples fixations a data frame containing the raw samples as recorded by the eye-tracker. This data frame has to have the following columns: time: the time at which the sample was recorded x: the x-coordinate of the sample y: the y-coordinate of the sample Samples have to be listed in chronological order. The velocity calculations assume that the sampling frequency is constant. a data frame containing the fixations that were detected in the samples. This data frame has to have the following columns: start: the time at which the fixations started end: the time at which the fixation ended x: the x-coordinate of the fixation y: the y-coordinate of the fixation Value Details A recording of the final plot. Can be re-plotted using replayplot. The function will open an interactive plot showing the samples and fixations. Red dots represent the x-coordinate and orange dots the y-coordinate. The gray vertical lines indicate the on- and offsets of saccades and horizontal lines the coordinates of the fixations. Instructions for navigating the plot are displayed on the console. See Also detect.fixations, calculate.summary
6 6 saccades Examples ## Not run: data(samples) fixations <- detect.fixations(samples) diagnostic.plot(samples, fixations) ## End(Not run) fixations Fixations Detected in a Stream of Raw Positions Format Fixations detected in a stream of raw eye positions. The corresponding raw eye positions samples are found in the data frame samples also part of this package. fixations a data frame containing one line per fixation. The fixations are sorted in chronological order. Time is given in milliseconds, x- and y-coordinates in screen pixels. Source Recorded with an iviewx Eye-Tracker by SMI at approximately 250 Hz. saccades Detection of Fixations in Raw Eye-Tracking Data Details Functions for the detection of fixations in raw eye-tracking data. Offers a function for detecting fixations in a stream of eye positions recorded by an eye-tracker. The detection is done using an algorithm for saccade detection proposed by Ralf Engbert and Reinhold Kliegl (see reference below). Anything that happens between two saccades is considered to be a fixation. This software is therefore not suited for data sets with smooth-pursuit eye movements.
7 samples 7 References Ralf Engbert, Reinhold Kliegl: Microsaccades uncover the orientation of covert attention, Vision Research, See Also detect.fixations, diagnostic.plot, calculate.summary samples Samples of Eye Positions as Recorded with an Eye-Tracker Format Samples of eye positions as recorded with an iviewx eye-tracker recording at approx. 250 Hz. The data quality is low on purpose and contains episodes of track-loss and blinks. samples a data frame containing one line per sample. The samples are sorted in chronological order. Time is given in milliseconds, x- and y-coordinates in screen pixels. Source Recorded with an iviewx Eye-Tracker by SMI at approximately 250 Hz.
8 Index Topic classif detect.fixations, 3 saccades, 6 Topic manip detect.fixations, 3 saccades, 6 Topic ts detect.fixations, 3 saccades, 6 calculate.summary, 2, 4, 5, 7 detect.fixations, 2, 3, 5, 7 diagnostic.plot, 2, 4, 5, 7 fixations, 6 replayplot, 5 saccades, 6 saccades-package (saccades), 6 samples, 6, 7 8
Package retrosheet. April 13, 2015
Type Package Package retrosheet April 13, 2015 Title Import Professional Baseball Data from 'Retrosheet' Version 1.0.2 Date 2015-03-17 Maintainer Richard Scriven A collection of tools
Package erp.easy. September 26, 2015
Type Package Package erp.easy September 26, 2015 Title Event-Related Potential (ERP) Data Exploration Made Easy Version 0.6.3 A set of user-friendly functions to aid in organizing, plotting and analyzing
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: [email protected] Website: http://www.psychology.nottingham.ac.uk/staff/wvh/eou
Package uptimerobot. October 22, 2015
Type Package Version 1.0.0 Title Access the UptimeRobot Ping API Package uptimerobot October 22, 2015 Provide a set of wrappers to call all the endpoints of UptimeRobot API which includes various kind
The Tobii I-VT Fixation Filter
The Tobii I-VT Fixation Filter Algorithm description March 2, 212 Anneli Olsen This document describes the general principles behind an I-VT fixation filter and they are implemented in the Tobii I-VT Fixation
Package plan. R topics documented: February 20, 2015
Package plan February 20, 2015 Version 0.4-2 Date 2013-09-29 Title Tools for project planning Author Maintainer Depends R (>= 0.99) Supports the creation of burndown
Package ggrepel. February 8, 2016
Version 0.5 Package ggrepel February 8, 2016 Title Repulsive Text and Label Geoms for 'ggplot2' Description Provides text and label geoms for 'ggplot2' that help to avoid overlapping text labels. Labels
Package tagcloud. R topics documented: July 3, 2015
Package tagcloud July 3, 2015 Type Package Title Tag Clouds Version 0.6 Date 2015-07-02 Author January Weiner Maintainer January Weiner Description Generating Tag and Word Clouds.
Video-Based Eye Tracking
Video-Based Eye Tracking Our Experience with Advanced Stimuli Design for Eye Tracking Software A. RUFA, a G.L. MARIOTTINI, b D. PRATTICHIZZO, b D. ALESSANDRINI, b A. VICINO, b AND A. FEDERICO a a Department
Package empiricalfdr.deseq2
Type Package Package empiricalfdr.deseq2 May 27, 2015 Title Simulation-Based False Discovery Rate in RNA-Seq Version 1.0.3 Date 2015-05-26 Author Mikhail V. Matz Maintainer Mikhail V. Matz
Package sendmailr. February 20, 2015
Version 1.2-1 Title send email using R Package sendmailr February 20, 2015 Package contains a simple SMTP client which provides a portable solution for sending email, including attachment, from within
Package decompr. August 17, 2016
Version 4.5.0 Title Global-Value-Chain Decomposition Package decompr August 17, 2016 Two global-value-chain decompositions are implemented. Firstly, the Wang-Wei-Zhu (Wang, Wei, and Zhu, 2013) algorithm
Designing eye tracking experiments to measure human behavior
Designing eye tracking experiments to measure human behavior Eindhoven, The Netherlands August, 2010 Ricardo Matos Tobii Technology Steps involved in measuring behaviour 1. Formulate and initial question
Package hazus. February 20, 2015
Package hazus February 20, 2015 Title Damage functions from FEMA's HAZUS software for use in modeling financial losses from natural disasters Damage Functions (DFs), also known as Vulnerability Functions,
Package polynom. R topics documented: June 24, 2015. Version 1.3-8
Version 1.3-8 Package polynom June 24, 2015 Title A Collection of Functions to Implement a Class for Univariate Polynomial Manipulations A collection of functions to implement a class for univariate polynomial
Package DCG. R topics documented: June 8, 2016. Type Package
Type Package Package DCG June 8, 2016 Title Data Cloud Geometry (DCG): Using Random Walks to Find Community Structure in Social Network Analysis Version 0.9.2 Date 2016-05-09 Depends R (>= 2.14.0) Data
Package TRADER. February 10, 2016
Type Package Package TRADER February 10, 2016 Title Tree Ring Analysis of Disturbance Events in R Version 1.2-1 Date 2016-02-10 Author Pavel Fibich , Jan Altman ,
Package neuralnet. February 20, 2015
Type Package Title Training of neural networks Version 1.32 Date 2012-09-19 Package neuralnet February 20, 2015 Author Stefan Fritsch, Frauke Guenther , following earlier work
Package MBA. February 19, 2015. Index 7. Canopy LIDAR data
Version 0.0-8 Date 2014-4-28 Title Multilevel B-spline Approximation Package MBA February 19, 2015 Author Andrew O. Finley , Sudipto Banerjee Maintainer Andrew
Package cpm. July 28, 2015
Package cpm July 28, 2015 Title Sequential and Batch Change Detection Using Parametric and Nonparametric Methods Version 2.2 Date 2015-07-09 Depends R (>= 2.15.0), methods Author Gordon J. Ross Maintainer
Package jrvfinance. R topics documented: October 6, 2015
Package jrvfinance October 6, 2015 Title Basic Finance; NPV/IRR/Annuities/Bond-Pricing; Black Scholes Version 1.03 Implements the basic financial analysis functions similar to (but not identical to) what
Fixplot Instruction Manual. (data plotting program)
Fixplot Instruction Manual (data plotting program) MANUAL VERSION2 2004 1 1. Introduction The Fixplot program is a component program of Eyenal that allows the user to plot eye position data collected with
Lab #4 - Linear Impulse and Momentum
Purpose: Lab #4 - Linear Impulse and Momentum The objective of this lab is to understand the linear and angular impulse/momentum relationship. Upon completion of this lab you will: Understand and know
Heart Rate Data Collection Software Application User Guide
Y O R K B I O F E E D B A C K w w w. y o r k - b i o f e e d b a c k. c o. u k G l y n B l a c k e t t Heart Rate Data Collection Software Application User Guide Table of Contents 1 Introduction...1 2
Package brewdata. R topics documented: February 19, 2015. Type Package
Type Package Package brewdata February 19, 2015 Title Extracting Usable Data from the Grad Cafe Results Search Version 0.4 Date 2015-01-29 Author Nathan Welch Maintainer Nathan Welch
Package bigrf. February 19, 2015
Version 0.1-11 Date 2014-05-16 Package bigrf February 19, 2015 Title Big Random Forests: Classification and Regression Forests for Large Data Sets Maintainer Aloysius Lim OS_type
Package MixGHD. June 26, 2015
Type Package Package MixGHD June 26, 2015 Title Model Based Clustering, Classification and Discriminant Analysis Using the Mixture of Generalized Hyperbolic Distributions Version 1.7 Date 2015-6-15 Author
Eye-tracking. Benjamin Noël
Eye-tracking Benjamin Noël Basics Majority of all perceived stimuli through the eyes Only 10% through ears, skin, nose Eye-tracking measuring movements of the eyes Record eye movements to subsequently
Package LexisPlotR. R topics documented: April 4, 2016. Type Package
Type Package Package LexisPlotR April 4, 2016 Title Plot Lexis Diagrams for Demographic Purposes Version 0.3 Date 2016-04-04 Author [aut, cre], Marieke Smilde-Becker [ctb] Maintainer
Vestibular Assessment
Oculomotor Examination A. Tests performed in room light Vestibular Assessment 1. Spontaneous nystagmus 2. Gaze holding nystagmus 3. Skew deviation 4. Vergence 5. Decreased vestibular ocular reflex i. Head
Lecture 8 : Coordinate Geometry. The coordinate plane The points on a line can be referenced if we choose an origin and a unit of 20
Lecture 8 : Coordinate Geometry The coordinate plane The points on a line can be referenced if we choose an origin and a unit of 0 distance on the axis and give each point an identity on the corresponding
Package TSfame. February 15, 2013
Package TSfame February 15, 2013 Version 2012.8-1 Title TSdbi extensions for fame Description TSfame provides a fame interface for TSdbi. Comprehensive examples of all the TS* packages is provided in the
1. Then f has a relative maximum at x = c if f(c) f(x) for all values of x in some
Section 3.1: First Derivative Test Definition. Let f be a function with domain D. 1. Then f has a relative maximum at x = c if f(c) f(x) for all values of x in some open interval containing c. The number
Learning Objectives:
Proteomics Methodology for LC-MS/MS Data Analysis Methodology for LC-MS/MS Data Analysis Peptide mass spectrum data of individual protein obtained from LC-MS/MS has to be analyzed for identification of
Package RCassandra. R topics documented: February 19, 2015. Version 0.1-3 Title R/Cassandra interface
Version 0.1-3 Title R/Cassandra interface Package RCassandra February 19, 2015 Author Simon Urbanek Maintainer Simon Urbanek This packages provides
Package bigdata. R topics documented: February 19, 2015
Type Package Title Big Data Analytics Version 0.1 Date 2011-02-12 Author Han Liu, Tuo Zhao Maintainer Han Liu Depends glmnet, Matrix, lattice, Package bigdata February 19, 2015 The
Fixation-identification in dynamic scenes: Comparing an automated algorithm to manual coding
Fixation-identification in dynamic scenes: Comparing an automated algorithm to manual coding Susan M. Munn Leanne Stefano Jeff B. Pelz Chester F. Carlson Center for Imaging Science Department of Psychology
Package hoarder. June 30, 2015
Type Package Title Information Retrieval for Genetic Datasets Version 0.1 Date 2015-06-29 Author [aut, cre], Anu Sironen [aut] Package hoarder June 30, 2015 Maintainer Depends
Package SHELF. February 5, 2016
Type Package Package SHELF February 5, 2016 Title Tools to Support the Sheffield Elicitation Framework (SHELF) Version 1.1.0 Date 2016-01-29 Author Jeremy Oakley Maintainer Jeremy Oakley
Package syuzhet. February 22, 2015
Type Package Package syuzhet February 22, 2015 Title Extracts Sentiment and Sentiment-Derived Plot Arcs from Text Version 0.2.0 Date 2015-01-20 Maintainer Matthew Jockers Extracts
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
C. elegans motility analysis in ImageJ - A practical approach
C. elegans motility analysis in ImageJ - A practical approach Summary This document describes some of the practical aspects of computer assisted analysis of C. elegans behavior in practice. C. elegans
Package survpresmooth
Package survpresmooth February 20, 2015 Type Package Title Presmoothed Estimation in Survival Analysis Version 1.1-8 Date 2013-08-30 Author Ignacio Lopez de Ullibarri and Maria Amalia Jacome Maintainer
Translog-II: A Program for Recording User Activity Data for Empirical Translation Process Research
IJCLA VOL. 3, NO. 1, JAN-JUN 2012, PP. 153 162 RECEIVED 25/10/11 ACCEPTED 09/12/11 FINAL 25/06/12 Translog-II: A Program for Recording User Activity Data for Empirical Translation Process Research Copenhagen
Package OECD. R topics documented: January 17, 2016. Type Package Title Search and Extract Data from the OECD Version 0.2.
Type Package Title Search and Extract Data from the OECD Version 0.2.2 Date 2016-01-17 Package OECD January 17, 2016 Search and extract data from the OECD. License CC0 URL https://www.github.com/expersso/oecd
Package globe. August 29, 2016
Type Package Package globe August 29, 2016 Title Plot 2D and 3D Views of the Earth, Including Major Coastline Version 1.1-2 Date 2016-01-29 Maintainer Adrian Baddeley Depends
Package MDM. February 19, 2015
Type Package Title Multinomial Diversity Model Version 1.3 Date 2013-06-28 Package MDM February 19, 2015 Author Glenn De'ath ; Code for mdm was adapted from multinom in the nnet package
Eye-Tracking Methodology and Applications in Consumer Research 1
FE947 Eye-Tracking Methodology and Applications in Consumer Research 1 Hayk Khachatryan and Alicia L. Rihn 2 Introduction Eye-tracking analysis is a research tool used to measure visual attention. Visual
University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 2: Manipulating Display Parameters in ArcMap. Symbolizing Features and Rasters:
: Manipulating Display Parameters in ArcMap Symbolizing Features and Rasters: Data sets that are added to ArcMap a default symbology. The user can change the default symbology for their features (point,
Face detection is a process of localizing and extracting the face region from the
Chapter 4 FACE NORMALIZATION 4.1 INTRODUCTION Face detection is a process of localizing and extracting the face region from the background. The detected face varies in rotation, brightness, size, etc.
Package png. February 20, 2015
Version 0.1-7 Title Read and write PNG images Package png February 20, 2015 Author Simon Urbanek Maintainer Simon Urbanek Depends R (>= 2.9.0)
Tutorial for Tracker and Supporting Software By David Chandler
Tutorial for Tracker and Supporting Software By David Chandler I use a number of free, open source programs to do video analysis. 1. Avidemux, to exerpt the video clip, read the video properties, and save
Package EstCRM. July 13, 2015
Version 1.4 Date 2015-7-11 Package EstCRM July 13, 2015 Title Calibrating Parameters for the Samejima's Continuous IRT Model Author Cengiz Zopluoglu Maintainer Cengiz Zopluoglu
Eye Tracker System Manual. ASL EyeTrac 6
Eye Tracker System Manual ASL EyeTrac 6 EyeNal Analysis Software MANUAL VERSION 1.41 19 January 2007 Applied Science Laboratories An Applied Science Group Company 175 Middlesex Turnpike Bedford, MA 01730
Environmental Remote Sensing GEOG 2021
Environmental Remote Sensing GEOG 2021 Lecture 4 Image classification 2 Purpose categorising data data abstraction / simplification data interpretation mapping for land cover mapping use land cover class
Package AMORE. February 19, 2015
Encoding UTF-8 Version 0.2-15 Date 2014-04-10 Title A MORE flexible neural network package Package AMORE February 19, 2015 Author Manuel Castejon Limas, Joaquin B. Ordieres Mere, Ana Gonzalez Marcos, Francisco
EyeMMV toolbox: An eye movement post-analysis tool based on a two-step spatial dispersion threshold for fixation identification
Journal of Eye Movement Research 7(1):1, 1-10 EyeMMV toolbox: An eye movement post-analysis tool based on a two-step spatial dispersion threshold for fixation identification Vassilios Krassanakis National
Exploratory data analysis (Chapter 2) Fall 2011
Exploratory data analysis (Chapter 2) Fall 2011 Data Examples Example 1: Survey Data 1 Data collected from a Stat 371 class in Fall 2005 2 They answered questions about their: gender, major, year in school,
Tracking Moving Objects In Video Sequences Yiwei Wang, Robert E. Van Dyck, and John F. Doherty Department of Electrical Engineering The Pennsylvania State University University Park, PA16802 Abstract{Object
Chapter 2: Frequency Distributions and Graphs
Chapter 2: Frequency Distributions and Graphs Learning Objectives Upon completion of Chapter 2, you will be able to: Organize the data into a table or chart (called a frequency distribution) Construct
STT315 Chapter 4 Random Variables & Probability Distributions KM. Chapter 4.5, 6, 8 Probability Distributions for Continuous Random Variables
Chapter 4.5, 6, 8 Probability Distributions for Continuous Random Variables Discrete vs. continuous random variables Examples of continuous distributions o Uniform o Exponential o Normal Recall: A random
PyGaze: an open-source, cross-platform toolbox for minimal-effort programming of eye-tracking experiments
1 PyGaze: an open-source, cross-platform toolbox for minimal-effort programming of eye-tracking experiments Edwin S. Dalmaijer 1, Sebastiaan Mathôt 2, Stefan Van der Stigchel 1 1. Experimental Psychology,
Package nortest. R topics documented: July 30, 2015. Title Tests for Normality Version 1.0-4 Date 2015-07-29
Title Tests for Normality Version 1.0-4 Date 2015-07-29 Package nortest July 30, 2015 Description Five omnibus tests for testing the composite hypothesis of normality. License GPL (>= 2) Imports stats
Scientific Graphing in Excel 2010
Scientific Graphing in Excel 2010 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.
Creating and Manipulating Spatial Weights
Creating and Manipulating Spatial Weights Spatial weights are essential for the computation of spatial autocorrelation statistics. In GeoDa, they are also used to implement Spatial Rate smoothing. Weights
How to test ocular movements in PSP Jan Kassubek
How to test ocular movements in PSP Jan Kassubek Universitätsklinik für Neurologie, Ulm Bedside Screening: PSP initially slowing of vertical saccades slowing of downward saccades is considered the hallmark
Anomaly Detection and Predictive Maintenance
Anomaly Detection and Predictive Maintenance Rosaria Silipo Iris Adae Christian Dietz Phil Winters [email protected] [email protected] [email protected] [email protected]
Package tvm. R topics documented: August 21, 2015. Type Package Title Time Value of Money Functions Version 0.3.0 Author Juan Manuel Truppia
Type Package Title Time Value of Money Functions Version 0.3.0 Author Juan Manuel Truppia Package tvm August 21, 2015 Maintainer Juan Manuel Truppia Functions for managing cashflows
Package wordcloud. R topics documented: February 20, 2015
Package wordcloud February 20, 2015 Type Package Title Word Clouds Version 2.5 Date 2013-04-11 Author Ian Fellows Maintainer Ian Fellows Pretty word clouds. License LGPL-2.1 LazyLoad
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
Package pxr. February 20, 2015
Type Package Title PC-Axis with R Version 0.40.0 Date 2013-06-11 Encoding UTF-8 Package pxr February 20, 2015 Maintainer Carlos J. Gil Bellosta The pxr package provides a set of
Package benford.analysis
Type Package Package benford.analysis November 17, 2015 Title Benford Analysis for Data Validation and Forensic Analytics Version 0.1.3 Author Carlos Cinelli Maintainer Carlos Cinelli
RESEARCH ON SPOKEN LANGUAGE PROCESSING Progress Report No. 29 (2008) Indiana University
RESEARCH ON SPOKEN LANGUAGE PROCESSING Progress Report No. 29 (2008) Indiana University A Software-Based System for Synchronizing and Preprocessing Eye Movement Data in Preparation for Analysis 1 Mohammad
Scan-Line Fill. Scan-Line Algorithm. Sort by scan line Fill each span vertex order generated by vertex list
Scan-Line Fill Can also fill by maintaining a data structure of all intersections of polygons with scan lines Sort by scan line Fill each span vertex order generated by vertex list desired order Scan-Line
PRODUCT SHEET. [email protected] [email protected] www.biopac.com
EYE TRACKING SYSTEMS BIOPAC offers an array of monocular and binocular eye tracking systems that are easily integrated with stimulus presentations, VR environments and other media. Systems Monocular Part
Exploratory Spatial Data Analysis
Exploratory Spatial Data Analysis Part II Dynamically Linked Views 1 Contents Introduction: why to use non-cartographic data displays Display linking by object highlighting Dynamic Query Object classification
Statistical Data Mining. Practical Assignment 3 Discriminant Analysis and Decision Trees
Statistical Data Mining Practical Assignment 3 Discriminant Analysis and Decision Trees In this practical we discuss linear and quadratic discriminant analysis and tree-based classification techniques.
CONVERSION GUIDE Financial Statement Files from CSA to Accounting CS
CONVERSION GUIDE Financial Statement Files from CSA to Accounting CS Introduction and conversion program overview... 1 Conversion considerations and recommendations... 1 Conversion procedures... 2 Data
Jitter Measurements in Serial Data Signals
Jitter Measurements in Serial Data Signals Michael Schnecker, Product Manager LeCroy Corporation Introduction The increasing speed of serial data transmission systems places greater importance on measuring
Data Visualization. Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004
Data Visualization Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004 Contents Brief Overview of ArcMap Goals of the Exercise Computer
A Reliability Point and Kalman Filter-based Vehicle Tracking Technique
A Reliability Point and Kalman Filter-based Vehicle Tracing Technique Soo Siang Teoh and Thomas Bräunl Abstract This paper introduces a technique for tracing the movement of vehicles in consecutive video
Automatic Detection of Emergency Vehicles for Hearing Impaired Drivers
Automatic Detection of Emergency Vehicles for Hearing Impaired Drivers Sung-won ark and Jose Trevino Texas A&M University-Kingsville, EE/CS Department, MSC 92, Kingsville, TX 78363 TEL (36) 593-2638, FAX
Calculation of Minimum Distances. Minimum Distance to Means. Σi i = 1
Minimum Distance to Means Similar to Parallelepiped classifier, but instead of bounding areas, the user supplies spectral class means in n-dimensional space and the algorithm calculates the distance between
Descriptive Statistics
Y520 Robert S Michael Goal: Learn to calculate indicators and construct graphs that summarize and describe a large quantity of values. Using the textbook readings and other resources listed on the web
Lab #8: Introduction to ENVI (Environment for Visualizing Images) Image Processing
Lab #8: Introduction to ENVI (Environment for Visualizing Images) Image Processing ASSIGNMENT: Display each band of a satellite image as a monochrome image and combine three bands into a color image, and
Package SurvCorr. February 26, 2015
Type Package Title Correlation of Bivariate Survival Times Version 1.0 Date 2015-02-25 Package SurvCorr February 26, 2015 Author Meinhard Ploner, Alexandra Kaider and Georg Heinze Maintainer Georg Heinze
Package treemap. October 14, 2015
Type Package Title Treemap Visualization Version 2.4 Date 2015-10-14 Author Martijn Tennekes Package treemap October 14, 2015 Maintainer Martijn Tennekes A treemap is a space-filling
Look Out The Window Functions
and free your SQL 2ndQuadrant Italia PostgreSQL Conference Europe 2011 October 18-21, Amsterdam Outline 1 Concepts Aggregates Different aggregations Partitions 2 Syntax Frames from 9.0 Frames in 8.4 3
