Preliminaries. 1. Download: bootstrap-software.org/psignifit. 2. Unzip, untar (e.g., in /Users/luke/psignifit)

Size: px
Start display at page:

Download "Preliminaries. 1. Download: bootstrap-software.org/psignifit. 2. Unzip, untar (e.g., in /Users/luke/psignifit)"

Transcription

1 Using psignifit() psignifit(): a Matlab toolbox by J. Hill and F. Wichmann for fitting psychometric functions, bootstrapping confidence intervals, and statistics

2 Preliminaries 1. Download: bootstrap-software.org/psignifit 2. Unzip, untar (e.g., in /Users/luke/psignifit) 3. >> addpath( /Users/luke/psignifit ); >> help psignifit 4. See: psych_tool_demo.m 5. Cite: Wichmann & Hill (2001a, 2001b). Perception and Psychophysics

3 Preliminaries psignifit() implements maximum-likelihood fitting and parametric bootstrapping. Those papers (above) use MC simulation to explore the consequences of, e.g., sampling scheme, trials numbers, and the choice of the specific form of the psychometric function.

4 α, β, γ, λ Parameters

5 Parameters α, β, γ, λ Performance [prop. correct] 1 0 α, β Stimulus intensity [a.u.] λ γ

6 Example 1: Contrast Gain >> whos dat1 dat2 Name Size Bytes Class Attributes dat1 6x3 144 double dat2 6x3 144 double >> dat1 dat1 = >>% Three columns: stimulus intensity [a.u.]; performance [prop n]; num trials.

7 >> which plotpd /Users/luke/psignifit/plotpd.m >> plotpd(dat1, Color, black ); >> plotpd(dat2, Color, red ); Example 1: Contrast Gain

8 >> which plotpd /Users/luke/psignifit/plotpd.m >> plotpd(dat1, Color, black ); >> plotpd(dat2, Color, red ); Example 1: Contrast Gain

9 Example 1: Contrast Gain >> T1 = pfit(dat1,'shape',shapef,'n_intervals',n_interval,'cuts',... THRESH,'lambda_limits',[0 LAMBDA_UPPER]);

10 Example 1: Contrast Gain >> B = 2000; >> SHAPEF = weibull ; >> N_INTERVALS = 4; >> THRESH = [ ]; >> LAMBDA_UPPER = 0.05; >> % For more options, see help psych_options. >> T1 = pfit(dat1,'shape',shapef,'n_intervals',n_interval,'cuts',... THRESH,'lambda_limits',[0 LAMBDA_UPPER]);

11 Example 1: Contrast Gain >> B = 2000; >> SHAPEF = weibull ; >> N_INTERVALS = 4; >> THRESH = [ ]; >> LAMBDA_UPPER = 0.05; >> % For more options, see help psych_options. >> T1 = pfit(dat1,'shape',shapef,'n_intervals',n_interval,'cuts',... THRESH,'lambda_limits',[0 LAMBDA_UPPER]); psi(x) = gamma + (1 - gamma - lambda) * F(x, alpha, beta) using Weibull function for F and assuming 4AFC design (gamma = 0.25) lambda is constrained within [0, 0.05] fitting to original data initial: {alpha = , beta = , gamma = 0.25, lambda = 0.01} final: {alpha = , beta = , gamma = 0.25, lambda = } running 1999 simulations using fitted parameters Stats for generating distribution: D = , r_pd = , r_kd = random seed: seconds.... >> T2 = pfit(dat2,'shape',shapef,'n_intervals',n_interval,'cuts',... THRESH,'lambda_limits',[0 LAMBDA_UPPER]);...

12 >> plotpf(shapef,t1.params.est,'color','black','linewidth',4); >> plotpf(shapef,t2.params.est,'color','red','linewidth',4); Example 1: Contrast Gain

13 Example 1: Contrast Gain >> OFFSET_TH1 = 1/N_INTERVAL ; >> OFFSET_TH2 = 1/N_INTERVAL - 0.1; >> line(t1.thresholds.lims(:,2),offset_th1 *... ones(size(t1.thresholds.lims(:,2))),'color','black','linewidth',4); >> line(t2.thresholds.lims(:,2),offset_th2 *... ones(size(t2.thresholds.lims(:,2))),'color','red','linewidth',4);

14 Example 1: Contrast Gain >> T1 T1 = shape: 'Weibull' params: [1x1 struct] stats: [1x1 struct] thresholds: [1x1 struct] slopes: [1x1 struct] fisher: [4x4 double] sens: [1x1 struct] cuts: [ ] conf: [ ] conflimmethod: 'BCa' gen: [ ] R: 1999 randseed: e+09 est: [ ] cpe: [ ] deriv: [4x3 double] lff: [4x3 double] bc: [ ] acc: [ ] lims: [4x3 double] quant: [4x3 double] worst: [4x3 double] >>

15 >> T1.params ans = est: [ ] cpe: [ ] deriv: [4x4 double] lff: [4x4 double] bc: [ ] acc: [ ] lims: [4x4 double] quant: [4x4 double] worst: [4x4 double] >> T1.thresholds ans = est: [ ] cpe: [ ] deriv: [4x3 double] lff: [4x3 double] bc: [ ] acc: [ ] lims: [4x3 double] quant: [4x3 double] worst: [4x3 double] >> Example 1: Contrast Gain

16 Whatʼs going on? Discussion 1

17 Discussion 1

18 Discussion 1

19 >> whos dat3 dat4... >> plotpd(dat3, Color, black ); >> plotpd(dat4, Color, red ); Example 2: Response Gain

20 Example 2: Response Gain >> LAMBDA_UPPER = 0.75; >> T3 = pfit(dat3,'shape',shapef,'n_intervals',n_interval,'cuts',... [ ],'lambda_limits',[0 LAMBDA_UPPER]); psi(x) = gamma + (1 - gamma - lambda) * F(x, alpha, beta) using Weibull function for F and assuming 4AFC design (gamma = 0.25) lambda is constrained within [0, 0.75] fitting to original data initial: {alpha = , beta = , gamma = 0.25, lambda = 0.375} final: {alpha = , beta = , gamma = 0.25, lambda = } running 1999 simulations using fitted parameters Stats for generating distribution: D = , r_pd = , r_kd = random seed: seconds.... >>

21 >> plotpf(shapef,t3.params.est,'color','black','linewidth',4); >> plotpf(shapef,t4.params.est,'color','red','linewidth',4); Example 2: Response Gain

22 Example 2: Response Gain >> line(t3.thresholds.lims(:,2),offset_th1 *... ones(size(t3.thresholds.lims(:,2))),'color','black','linewidth',4);...

23 General Discussion >> help psych_options... Model options ============= #SHAPE The shape of the underlying psychometric distribution function F. supported values: Weibull, logistic, cumulative Gaussian, Gumbel, linear default: logistic

24 General Discussion >> help psych_options... Model options ============= #ALPHA_LIMITS, #ALPHA_PRIOR #BETA_LIMITS, #BETA_PRIOR #GAMMA_LIMITS, #GAMMA_PRIOR #LAMBDA_LIMITS, #LAMBDA_PRIOR The limits in which each of the parameters is allowed to vary.... The syntax #WHATEVER_LIMITS lo, hi is equivalent to #WHATEVER_PRIOR -flat lo, hi and the two options (_LIMITS and _PRIOR) cannot be applied simultaneously to the same variable.... #LAMBDA_PRIOR -gaussian mu, std implements a Gaussian prior with the given mean and standard deviation.

25 General Discussion >> help psych_options... Measures of interest ==================== #CONF Cumulative probability levels at which confidence interval boundaries are calculated: range (0, 1). default: [ ] (equivalent coverage to [ ] std's from the mean of a Normal)

26 General Discussion >> help psych_options... Measures of interest ==================== #CONF Cumulative probability levels at which confidence interval boundaries are calculated: range (0, 1). default: [ ] (equivalent coverage to [ ] std's from the mean of a Normal)

27 General Discussion

28 General Discussion

Efficient estimation of sensory thresholds with ML-PEST

Efficient estimation of sensory thresholds with ML-PEST Spatial Vision, Vol. I I, No. 1, pp. 121-128 (1997) VSP 1997. Efficient estimation of sensory thresholds with ML-PEST LEWIS 0. HARVEY, JR.* Department of psychology, Campus Box 345, University of Colorado,

More information

Package UnivRNG. R topics documented: January 10, Type Package

Package UnivRNG. R topics documented: January 10, Type Package Type Package Package UnivRNG January 10, 2018 Title Univariate Pseudo-Random Number Generation Version 1.1 Date 2018-01-10 Author Hakan Demirtas, Rawan Allozi Maintainer Rawan Allozi

More information

Bootstrapping Methods

Bootstrapping Methods Bootstrapping Methods example of a Monte Carlo method these are one Monte Carlo statistical method some Bayesian statistical methods are Monte Carlo we can also simulate models using Monte Carlo methods

More information

Package citools. October 20, 2018

Package citools. October 20, 2018 Type Package Package citools October 20, 2018 Title Confidence or Prediction Intervals, Quantiles, and Probabilities for Statistical Models Version 0.5.0 Maintainer John Haman Functions

More information

Introduction to entropart

Introduction to entropart Introduction to entropart Eric Marcon AgroParisTech UMR EcoFoG Bruno Hérault Cirad UMR EcoFoG Abstract entropart is a package for R designed to estimate diversity based on HCDT entropy or similarity-based

More information

Chapter 3. Bootstrap. 3.1 Introduction. 3.2 The general idea

Chapter 3. Bootstrap. 3.1 Introduction. 3.2 The general idea Chapter 3 Bootstrap 3.1 Introduction The estimation of parameters in probability distributions is a basic problem in statistics that one tends to encounter already during the very first course on the subject.

More information

DPP: Reference documentation. version Luis M. Avila, Mike R. May and Jeffrey Ross-Ibarra 17th November 2017

DPP: Reference documentation. version Luis M. Avila, Mike R. May and Jeffrey Ross-Ibarra 17th November 2017 DPP: Reference documentation version 0.1.2 Luis M. Avila, Mike R. May and Jeffrey Ross-Ibarra 17th November 2017 1 Contents 1 DPP: Introduction 3 2 DPP: Classes and methods 3 2.1 Class: NormalModel.........................

More information

SSJ User s Guide. Package randvar Generating Non-Uniform Random Numbers

SSJ User s Guide. Package randvar Generating Non-Uniform Random Numbers SSJ User s Guide Package randvar Generating Non-Uniform Random Numbers Version: May 21, 2008 This package implements random number generators from various standard distributions. It also provides an interface

More information

Histograms. h(r k ) = n k. p(r k )= n k /NM. Histogram: number of times intensity level rk appears in the image

Histograms. h(r k ) = n k. p(r k )= n k /NM. Histogram: number of times intensity level rk appears in the image Histograms h(r k ) = n k Histogram: number of times intensity level rk appears in the image p(r k )= n k /NM normalized histogram also a probability of occurence 1 Histogram of Image Intensities Create

More information

1. Start WinBUGS by double clicking on the WinBUGS icon (or double click on the file WinBUGS14.exe in the WinBUGS14 directory in C:\Program Files).

1. Start WinBUGS by double clicking on the WinBUGS icon (or double click on the file WinBUGS14.exe in the WinBUGS14 directory in C:\Program Files). Hints on using WinBUGS 1 Running a model in WinBUGS 1. Start WinBUGS by double clicking on the WinBUGS icon (or double click on the file WinBUGS14.exe in the WinBUGS14 directory in C:\Program Files). 2.

More information

STATLIB Probability and Statistics Library

STATLIB Probability and Statistics Library 1 STATLIB INTRODUCTION 1 1. Introduction. STATLIB Probability and Statistics Library John Walker This program is in the public domain. This program provides facilities for computations involving probability

More information

AN INTRODUCTION TO LIFE CYCLE ANALYSIS MECHANICAL BEHAVIOUR OF THE SYSTEM POSSIBLE BEHAVIOUR MODELS WITHOUT SYSTEM RECONSTRUCTION

AN INTRODUCTION TO LIFE CYCLE ANALYSIS MECHANICAL BEHAVIOUR OF THE SYSTEM POSSIBLE BEHAVIOUR MODELS WITHOUT SYSTEM RECONSTRUCTION AN INTRODUCTION TO LIFE CYCLE ANALYSIS MECHANICAL BEHAVIOUR OF THE SYSTEM POSSIBLE BEHAVIOUR MODELS WITHOUT SYSTEM RECONSTRUCTION POSSIBLE BEHAVIOUR MODELS WITH SYSTEM RECONSTRUCTION 2R LCA TERMINOLOGY

More information

PRwSC Matlab Toolbox

PRwSC Matlab Toolbox Georg-August-UniversitÃd t GÃűttingen Documentation PRwSC Matlab Toolbox Phase Retrieval with Sparsity Constraints Stefan Loock * March 9, 2017 Contents 1 Installation 1 1.1 Acknowledgements....................................

More information

Package simsurv. May 18, 2018

Package simsurv. May 18, 2018 Type Package Title Simulate Survival Data Version 0.2.2 Date 2018-05-18 Package simsurv May 18, 2018 Maintainer Sam Brilleman Description Simulate survival times from standard

More information

Simulation Input Data Modeling

Simulation Input Data Modeling Introduction to Modeling and Simulation Simulation Input Data Modeling OSMAN BALCI Professor Department of Computer Science Virginia Polytechnic Institute and State University (Virginia Tech) Blacksburg,

More information

gsdesign: An R Package for Designing Group Sequential Clinical Trials Version 2.0 Manual

gsdesign: An R Package for Designing Group Sequential Clinical Trials Version 2.0 Manual gsdesign: An R Package for Designing Group Sequential Clinical Trials Version 2.0 Manual Keaven M. Anderson, Dan (Jennifer) Sun, Zhongxin (John) Zhang Merck Research Laboratories December 18, 2008 Abstract

More information

Object recognition in images by human vision and computer vision Chen, Q.; Dijkstra, J.; de Vries, B.

Object recognition in images by human vision and computer vision Chen, Q.; Dijkstra, J.; de Vries, B. Object recognition in images by human vision and computer vision Chen, Q.; Dijkstra, J.; de Vries, B. Published in: Conference proceeding of 10th International Conference on Design & Decision Support Systems

More information

SAA AssemblØe GØnØrale, Groupe ASTIN Olten, Reinventing Pareto. Fits for Both Small and Large Losses (Charles A. Hachemeister Prize 2014)

SAA AssemblØe GØnØrale, Groupe ASTIN Olten, Reinventing Pareto. Fits for Both Small and Large Losses (Charles A. Hachemeister Prize 2014) SAA AssemblØe GØnØrale, Groupe ASTIN Olten, 28-08-2015 Reinventing Pareto Fits for Both Small and Large Losses (Charles A. Hachemeister Prize 2014) Michael Fackler Independent Actuary, M nchen Key ideas

More information

Basic relations between pixels (Chapter 2)

Basic relations between pixels (Chapter 2) Basic relations between pixels (Chapter 2) Lecture 3 Basic Relationships Between Pixels Definitions: f(x,y): digital image Pixels: q, p (p,q f) A subset of pixels of f(x,y): S A typology of relations:

More information

Accelerated Life Testing Module Accelerated Life Testing - Overview

Accelerated Life Testing Module Accelerated Life Testing - Overview Accelerated Life Testing Module Accelerated Life Testing - Overview The Accelerated Life Testing (ALT) module of AWB provides the functionality to analyze accelerated failure data and predict reliability

More information

TOD Test Method for Characterizing Electro-Optical System Performance

TOD Test Method for Characterizing Electro-Optical System Performance TOD Test Method for Characterizing Electro-Optical System Performance S. W. McHugh A. Irwin Santa Barbara Infrared, Inc. 312A North Nopal Street Santa Barbara, CA 9313 J. M. Valeton P. Bijl TNO Human Factors

More information

Process Capability in the Six Sigma Environment

Process Capability in the Six Sigma Environment GE Research & Development Center Process Capability in the Six Sigma Environment C.L. Stanard 2001CRD119, July 2001 Class 1 Technical Information Series Copyright 2001 General Electric Company. All rights

More information

19 Random Number Distributions

19 Random Number Distributions Chapter 9: Random Number Distributions 87 9 Random Number Distributions This chapter describes functions for generating random variates and computing their probability distributions. Samples from the distributions

More information

Modelling Proportions and Count Data

Modelling Proportions and Count Data Modelling Proportions and Count Data Rick White May 4, 2016 Outline Analysis of Count Data Binary Data Analysis Categorical Data Analysis Generalized Linear Models Questions Types of Data Continuous data:

More information

Modelling Proportions and Count Data

Modelling Proportions and Count Data Modelling Proportions and Count Data Rick White May 5, 2015 Outline Analysis of Count Data Binary Data Analysis Categorical Data Analysis Generalized Linear Models Questions Types of Data Continuous data:

More information

Digital image processing

Digital image processing Digital image processing Image enhancement algorithms: grey scale transformations Any digital image can be represented mathematically in matrix form. The number of lines in the matrix is the number of

More information

R-package simctest A Short Introduction

R-package simctest A Short Introduction R-package simctest A Short Introduction Axel Gandy and Patrick Rubin-Delanchy March 23, 2017 This document describes briefly how to use the R-package which implements the methods from Sequential implementation

More information

Model Criticism for Regression on the Grassmannian

Model Criticism for Regression on the Grassmannian Model Criticism for Regression on the Grassmannian Yi Hong, Roland Kwitt 3, and Marc Niethammer,2 University of North Carolina (UNC) at Chapel Hill, NC, US 2 Biomedical Research Imaging Center, UNC-Chapel

More information

Physics 736. Experimental Methods in Nuclear-, Particle-, and Astrophysics. Lecture 14

Physics 736. Experimental Methods in Nuclear-, Particle-, and Astrophysics. Lecture 14 Physics 736 Experimental Methods in Nuclear-, Particle-, and Astrophysics Lecture 14 Karsten Heeger heeger@wisc.edu Course Schedule and Reading course website http://neutrino.physics.wisc.edu/teaching/phys736/

More information

TORSCHE SCHEDULING TOOLBOX: LIST SCHEDULING

TORSCHE SCHEDULING TOOLBOX: LIST SCHEDULING TORSCHE SCHEDULING TOOLBOX: LIST SCHEDULING STIBOR MILOSLAV, KUTIL MICHAL Department of Control Engineering, Czech Technical University in Prague, Technicka 2, 166 27 Prague 6, Czech Republic phone: +420

More information

Simulation and resampling analysis in R

Simulation and resampling analysis in R Simulation and resampling analysis in R Author: Nicholas G Reich, Jeff Goldsmith, Andrea S Foulkes, Gregory Matthews This material is part of the statsteachr project Made available under the Creative Commons

More information

Anomaly detection for NFSen/nfdump netflow engine - with Holt-Winters algorithm

Anomaly detection for NFSen/nfdump netflow engine - with Holt-Winters algorithm Anomaly detection for NFSen/nfdump netflow engine - with Holt-Winters algorithm János Mohácsi, Gábor Kiss NIIF/HUNGARNET Motivation Usual work of CSIRT teams: Find abnormal behaviour Visual detection of

More information

Package bayesdp. July 10, 2018

Package bayesdp. July 10, 2018 Type Package Package bayesdp July 10, 2018 Title Tools for the Bayesian Discount Prior Function Version 1.3.2 Date 2018-07-10 Depends R (>= 3.2.3), ggplot2, survival, methods Functions for data augmentation

More information

Statistical Analysis of List Experiments

Statistical Analysis of List Experiments Statistical Analysis of List Experiments Kosuke Imai Princeton University Joint work with Graeme Blair October 29, 2010 Blair and Imai (Princeton) List Experiments NJIT (Mathematics) 1 / 26 Motivation

More information

3760 bcrm Defining and Running Simulations

3760 bcrm Defining and Running Simulations bcrm Defining and Running Simulations Tessella Project Number 3760 Tessella Support Services plc e-mail: post@tessella.com Head Office: Abingdon 3 Vineyard Chambers, Abingdon, Oxfordshire OX14 3PX, England

More information

Extreme Value Theory in (Hourly) Precipitation

Extreme Value Theory in (Hourly) Precipitation Extreme Value Theory in (Hourly) Precipitation Uli Schneider Geophysical Statistics Project, NCAR GSP Miniseries at CSU November 17, 2003 Outline Project overview Extreme value theory 101 Applying extreme

More information

Image Enhancement in Spatial Domain. By Dr. Rajeev Srivastava

Image Enhancement in Spatial Domain. By Dr. Rajeev Srivastava Image Enhancement in Spatial Domain By Dr. Rajeev Srivastava CONTENTS Image Enhancement in Spatial Domain Spatial Domain Methods 1. Point Processing Functions A. Gray Level Transformation functions for

More information

More on Classification: Support Vector Machine

More on Classification: Support Vector Machine More on Classification: Support Vector Machine The Support Vector Machine (SVM) is a classification method approach developed in the computer science field in the 1990s. It has shown good performance in

More information

Package sp23design. R topics documented: February 20, Type Package

Package sp23design. R topics documented: February 20, Type Package Type Package Package sp23design February 20, 2015 Title Design and Simulation of seamless Phase II-III Clinical Trials Version 0.9 Date 2012-01-01 Author Balasubramanian Narasimhan [aut, cre], Mei-Chiung

More information

Lecture 4. Digital Image Enhancement. 1. Principle of image enhancement 2. Spatial domain transformation. Histogram processing

Lecture 4. Digital Image Enhancement. 1. Principle of image enhancement 2. Spatial domain transformation. Histogram processing Lecture 4 Digital Image Enhancement 1. Principle of image enhancement 2. Spatial domain transformation Basic intensity it tranfomation ti Histogram processing Principle Objective of Enhancement Image enhancement

More information

NCSS Statistical Software. Robust Regression

NCSS Statistical Software. Robust Regression Chapter 308 Introduction Multiple regression analysis is documented in Chapter 305 Multiple Regression, so that information will not be repeated here. Refer to that chapter for in depth coverage of multiple

More information

Package spcadjust. September 29, 2016

Package spcadjust. September 29, 2016 Version 1.1 Date 2015-11-20 Title Functions for Calibrating Control Charts Package spcadjust September 29, 2016 Author Axel Gandy and Jan Terje Kvaloy . Maintainer

More information

Beyond the Assumption of Constant Hazard Rate in Estimating Incidence Rate on Current Status Data with Applications to Phase IV Cancer Trial

Beyond the Assumption of Constant Hazard Rate in Estimating Incidence Rate on Current Status Data with Applications to Phase IV Cancer Trial Beyond the Assumption of Constant Hazard Rate in Estimating Incidence Rate on Current Status Data with Applications to Phase IV Cancer Trial Deokumar Srivastava, Ph.D. Member Department of Biostatistics

More information

Developing Effect Sizes for Non-Normal Data in Two-Sample Comparison Studies

Developing Effect Sizes for Non-Normal Data in Two-Sample Comparison Studies Developing Effect Sizes for Non-Normal Data in Two-Sample Comparison Studies with an Application in E-commerce Durham University Apr 13, 2010 Outline 1 Introduction Effect Size, Complementory for Hypothesis

More information

Use of Extreme Value Statistics in Modeling Biometric Systems

Use of Extreme Value Statistics in Modeling Biometric Systems Use of Extreme Value Statistics in Modeling Biometric Systems Similarity Scores Two types of matching: Genuine sample Imposter sample Matching scores Enrolled sample 0.95 0.32 Probability Density Decision

More information

QUT Digital Repository: This is the author version published as:

QUT Digital Repository:   This is the author version published as: QUT Digital Repository: http://eprints.qut.edu.au/ This is the author version published as: This is the accepted version of this article. To be published as : This is the author version published as: Chen,

More information

Physics 736. Experimental Methods in Nuclear-, Particle-, and Astrophysics. - Statistics and Error Analysis -

Physics 736. Experimental Methods in Nuclear-, Particle-, and Astrophysics. - Statistics and Error Analysis - Physics 736 Experimental Methods in Nuclear-, Particle-, and Astrophysics - Statistics and Error Analysis - Karsten Heeger heeger@wisc.edu Feldman&Cousin what are the issues they deal with? what processes

More information

Minitab detailed

Minitab detailed Minitab 18.1 - detailed ------------------------------------- ADDITIVE contact sales: 06172-5905-30 or minitab@additive-net.de ADDITIVE contact Technik/ Support/ Installation: 06172-5905-20 or support@additive-net.de

More information

Fast Random Walker with Priors using Precomputation for Interactive Medical Image Segmentation

Fast Random Walker with Priors using Precomputation for Interactive Medical Image Segmentation Fast Random Walker with Priors using Precomputation for Interactive Medical Image Segmentation Shawn Andrews, Ghassan Hamarneh, Ahmed Saad Medical Image Analysis Lab, Simon Fraser University, Canada, {sda56,

More information

Modeling and Tolerating Heterogeneous Failures in Large Parallel Systems

Modeling and Tolerating Heterogeneous Failures in Large Parallel Systems Modeling and Tolerating Heterogeneous Failures in Large Parallel Systems Eric Heien 1, Derrick Kondo 1, Ana Gainaru 2, Dan LaPine 2, Bill Kramer 2, Franck Cappello 1, 2 1 INRIA, France 2 UIUC, USA Context

More information

LOGISTIC REGRESSION FOR MULTIPLE CLASSES

LOGISTIC REGRESSION FOR MULTIPLE CLASSES Peter Orbanz Applied Data Mining Not examinable. 111 LOGISTIC REGRESSION FOR MULTIPLE CLASSES Bernoulli and multinomial distributions The mulitnomial distribution of N draws from K categories with parameter

More information

Biostatistics & SAS programming. Kevin Zhang

Biostatistics & SAS programming. Kevin Zhang Biostatistics & SAS programming Kevin Zhang February 27, 2017 Random variables and distributions 1 Data analysis Simulation study Apply existing methodologies to your collected samples, with the hope to

More information

Biometrics Technology: Image Processing & Pattern Recognition (by Dr. Dickson Tong)

Biometrics Technology: Image Processing & Pattern Recognition (by Dr. Dickson Tong) Biometrics Technology: Image Processing & Pattern Recognition (by Dr. Dickson Tong) References: [1] http://homepages.inf.ed.ac.uk/rbf/hipr2/index.htm [2] http://www.cs.wisc.edu/~dyer/cs540/notes/vision.html

More information

ECE 510 Midterm 13 Feb 2013

ECE 510 Midterm 13 Feb 2013 ECE 510 Midterm 13 Feb 2013 Questions (short answer) 1. What does QRE stand for? 2. Name 3 job activities a QRE might perform. 3. Would 100 DPM at the end of an expected life of 5 years be a typical goal

More information

Robust Linear Regression (Passing- Bablok Median-Slope)

Robust Linear Regression (Passing- Bablok Median-Slope) Chapter 314 Robust Linear Regression (Passing- Bablok Median-Slope) Introduction This procedure performs robust linear regression estimation using the Passing-Bablok (1988) median-slope algorithm. Their

More information

Conducting a Path Analysis With SPSS/AMOS

Conducting a Path Analysis With SPSS/AMOS Conducting a Path Analysis With SPSS/AMOS Download the PATH-INGRAM.sav data file from my SPSS data page and then bring it into SPSS. The data are those from the research that led to this publication: Ingram,

More information

The Bolstad Package. July 9, 2007

The Bolstad Package. July 9, 2007 The Bolstad Package July 9, 2007 Version 0.2-12 Date 2007-09-07 Title Bolstad functions Author James Curran Maintainer James M. Curran A set of

More information

Typed Compilation Against Non-Manifest Base Classes

Typed Compilation Against Non-Manifest Base Classes Typed Compilation Against Non-Manifest Base Classes Christopher League Long Island University christopher.league@liu.edu Stefan Monnier Université de Montréal monnier@iro.umontreal.ca FTfJP workshop 26

More information

MACHINE LEARNED BOUNDARY DEFINITIONS... The True Story of A Ten-Year Trail Across the Ph.D. Plains

MACHINE LEARNED BOUNDARY DEFINITIONS... The True Story of A Ten-Year Trail Across the Ph.D. Plains MACHINE LEARNED BOUNDARY DEFINITIONS... The True Story of A Ten-Year Trail Across the Ph.D. Plains Stewart Crawford-Hines BMAC 27 October 23 Outline Results () Comparisons (7, ) Quantification (6) Engineering

More information

CALCULATION OF OPERATIONAL LOSSES WITH NON- PARAMETRIC APPROACH: DERAILMENT LOSSES

CALCULATION OF OPERATIONAL LOSSES WITH NON- PARAMETRIC APPROACH: DERAILMENT LOSSES 2. Uluslar arası Raylı Sistemler Mühendisliği Sempozyumu (ISERSE 13), 9-11 Ekim 2013, Karabük, Türkiye CALCULATION OF OPERATIONAL LOSSES WITH NON- PARAMETRIC APPROACH: DERAILMENT LOSSES Zübeyde Öztürk

More information

WinBUGS Tutorial Outline

WinBUGS Tutorial Outline WinBUGS Tutorial Outline August 4, 2005 Authors: Ed Merkle & Trisha Van Zandt WinBUGS overview Description of Example Data Example 1: Confidence in Signal Detection Example 2: Mean RT Model Example 3:

More information

Characterizing and Controlling the. Spectral Output of an HDR Display

Characterizing and Controlling the. Spectral Output of an HDR Display Characterizing and Controlling the Spectral Output of an HDR Display Ana Radonjić, Christopher G. Broussard, and David H. Brainard Department of Psychology, University of Pennsylvania, Philadelphia, PA

More information

AN INTRODUCTION TO RELIABILITY ANALYSIS

AN INTRODUCTION TO RELIABILITY ANALYSIS AN INTRODUCTION TO RELIABILITY ANALYSIS Every real-life system has a capacity (or resistance) for doing something and is subjected to some sort of demand (or load). Both capacity and demand may change

More information

AN ENHANCED METHOD FOR EXTREME LOADS ANALYSIS

AN ENHANCED METHOD FOR EXTREME LOADS ANALYSIS Brodogradnja/Shipbuilding/Open access Volume 68 Number 2, 2017 Francesco MAURO Radoslav NABERGOJ http://dx.doi.org/10.21278/brod68206 ISSN 0007-215X eissn 1845-5859 AN ENHANCED METHOD FOR EXTREME LOADS

More information

Subset Selection in Multiple Regression

Subset Selection in Multiple Regression Chapter 307 Subset Selection in Multiple Regression Introduction Multiple regression analysis is documented in Chapter 305 Multiple Regression, so that information will not be repeated here. Refer to that

More information

Bayesian Analysis of Extended Lomax Distribution

Bayesian Analysis of Extended Lomax Distribution Bayesian Analysis of Extended Lomax Distribution Shankar Kumar Shrestha and Vijay Kumar 2 Public Youth Campus, Tribhuvan University, Nepal 2 Department of Mathematics and Statistics DDU Gorakhpur University,

More information

Chapter 3: Intensity Transformations and Spatial Filtering

Chapter 3: Intensity Transformations and Spatial Filtering Chapter 3: Intensity Transformations and Spatial Filtering 3.1 Background 3.2 Some basic intensity transformation functions 3.3 Histogram processing 3.4 Fundamentals of spatial filtering 3.5 Smoothing

More information

Haptic Discrimination of Fields and Surfaces

Haptic Discrimination of Fields and Surfaces Haptic Discrimination of Fields and Surfaces by Vikram S. Chib Submitted to the Department of Biomedical Engineering in partial fulfillment of the requirements for the degree of Masters of Science in Biomedical

More information

What s New in Oracle Crystal Ball? What s New in Version Browse to:

What s New in Oracle Crystal Ball? What s New in Version Browse to: What s New in Oracle Crystal Ball? Browse to: - What s new in version 11.1.1.0.00 - What s new in version 7.3 - What s new in version 7.2 - What s new in version 7.1 - What s new in version 7.0 - What

More information

MATLAB COMPUTATIONAL FINANCE CONFERENCE Quantitative Sports Analytics using MATLAB

MATLAB COMPUTATIONAL FINANCE CONFERENCE Quantitative Sports Analytics using MATLAB MATLAB COMPUTATIONAL FINANCE CONFERENCE 2017 Quantitative Sports Analytics using MATLAB Robert Kissell, PhD Robert.Kissell@KissellResearch.com September 28, 2017 Important Email and Web Addresses AlgoSports23/MATLAB

More information

Evaluation of Two Principal Approaches to Objective Image Quality Assessment

Evaluation of Two Principal Approaches to Objective Image Quality Assessment Evaluation of Two Principal Approaches to Objective Image Quality Assessment Martin Čadík, Pavel Slavík Department of Computer Science and Engineering Faculty of Electrical Engineering, Czech Technical

More information

weibull Documentation

weibull Documentation weibull Documentation Release 0.0 Jason R. Jones Jan 11, 2018 Contents 1 Installation 1 1.1 Using pip................................................ 1 1.2 Using setup.py............................................

More information

R topics documented: 2 genbernoullidata

R topics documented: 2 genbernoullidata Type Package Package BayesCTDesign August 14, 2018 Title Two Arm Bayesian Clinical Trial Design with and Without Historical Control Data Version 0.5.0 Description A set of functions to help clinical trial

More information

Weibull++ 7 All the tools you will ever need for Life Data Analysis, and more...

Weibull++ 7 All the tools you will ever need for Life Data Analysis, and more... ReliaSoft s Weibull++ 7 All the tools you will ever need for Life Data Analysis, and more... No part of this training guide may be reproduced or transmitted in any form or by any means, for any purpose,

More information

CHAPTER 18 OUTPUT, SAVEDATA, AND PLOT COMMANDS

CHAPTER 18 OUTPUT, SAVEDATA, AND PLOT COMMANDS OUTPUT, SAVEDATA, And PLOT Commands CHAPTER 18 OUTPUT, SAVEDATA, AND PLOT COMMANDS THE OUTPUT COMMAND OUTPUT: In this chapter, the OUTPUT, SAVEDATA, and PLOT commands are discussed. The OUTPUT command

More information

BLIND QUALITY ASSESSMENT OF VIDEOS USING A MODEL OF NATURAL SCENE STATISTICS AND MOTION COHERENCY

BLIND QUALITY ASSESSMENT OF VIDEOS USING A MODEL OF NATURAL SCENE STATISTICS AND MOTION COHERENCY BLIND QUALITY ASSESSMENT OF VIDEOS USING A MODEL OF NATURAL SCENE STATISTICS AND MOTION COHERENCY Michele A. Saad The University of Texas at Austin Department of Electrical and Computer Engineering Alan

More information

CHAPTER 3 FACE DETECTION AND PRE-PROCESSING

CHAPTER 3 FACE DETECTION AND PRE-PROCESSING 59 CHAPTER 3 FACE DETECTION AND PRE-PROCESSING 3.1 INTRODUCTION Detecting human faces automatically is becoming a very important task in many applications, such as security access control systems or contentbased

More information

A GENERAL GIBBS SAMPLING ALGORITHM FOR ANALYZING LINEAR MODELS USING THE SAS SYSTEM

A GENERAL GIBBS SAMPLING ALGORITHM FOR ANALYZING LINEAR MODELS USING THE SAS SYSTEM A GENERAL GIBBS SAMPLING ALGORITHM FOR ANALYZING LINEAR MODELS USING THE SAS SYSTEM Jayawant Mandrekar, Daniel J. Sargent, Paul J. Novotny, Jeff A. Sloan Mayo Clinic, Rochester, MN 55905 ABSTRACT A general

More information

Package intccr. September 12, 2017

Package intccr. September 12, 2017 Type Package Package intccr September 12, 2017 Title Semiparametric Competing Risks Regression under Interval Censoring Version 0.2.0 Author Giorgos Bakoyannis , Jun Park

More information

A SYNOPTIC ACCOUNT FOR TEXTURE SEGMENTATION: FROM EDGE- TO REGION-BASED MECHANISMS

A SYNOPTIC ACCOUNT FOR TEXTURE SEGMENTATION: FROM EDGE- TO REGION-BASED MECHANISMS A SYNOPTIC ACCOUNT FOR TEXTURE SEGMENTATION: FROM EDGE- TO REGION-BASED MECHANISMS Enrico Giora and Clara Casco Department of General Psychology, University of Padua, Italy Abstract Edge-based energy models

More information

Edge and local feature detection - 2. Importance of edge detection in computer vision

Edge and local feature detection - 2. Importance of edge detection in computer vision Edge and local feature detection Gradient based edge detection Edge detection by function fitting Second derivative edge detectors Edge linking and the construction of the chain graph Edge and local feature

More information

Introduction to unconstrained optimization - derivative-free methods

Introduction to unconstrained optimization - derivative-free methods Introduction to unconstrained optimization - derivative-free methods Jussi Hakanen Post-doctoral researcher Office: AgC426.3 jussi.hakanen@jyu.fi Learning outcomes To understand the basic principles of

More information

Introduction to Psychtoolbox-3. Dr Cyril R Pernet Fribourg, Feb. 2012

Introduction to Psychtoolbox-3.  Dr Cyril R Pernet Fribourg, Feb. 2012 Introduction to Psychtoolbox-3 http://psychtoolbox.org/ Dr Cyril R Pernet Fribourg, Feb. 2012 What is it? Toolbox running under Matlab and Octave to synthesize and show accurately controlled visual and

More information

Package libstabler. June 1, 2017

Package libstabler. June 1, 2017 Version 1.0 Date 2017-05-25 Package libstabler June 1, 2017 Title Fast and Accurate Evaluation, Random Number Generation and Parameter Estimation of Skew Stable Distributions Tools for fast and accurate

More information

CHAPTER 3 AN OVERVIEW OF DESIGN OF EXPERIMENTS AND RESPONSE SURFACE METHODOLOGY

CHAPTER 3 AN OVERVIEW OF DESIGN OF EXPERIMENTS AND RESPONSE SURFACE METHODOLOGY 23 CHAPTER 3 AN OVERVIEW OF DESIGN OF EXPERIMENTS AND RESPONSE SURFACE METHODOLOGY 3.1 DESIGN OF EXPERIMENTS Design of experiments is a systematic approach for investigation of a system or process. A series

More information

Surviving Survival Forecasting of Product Failure

Surviving Survival Forecasting of Product Failure Surviving Survival Forecasting of Product Failure Ryan Carr Advisory Statistical Data Scientist SAS ryan.carr@sas.com #AnalyticsX Agenda Survival Model Concepts Censoring & time Alignment Preparing the

More information

ISyE8843A, Brani Vidakovic Handout 14

ISyE8843A, Brani Vidakovic Handout 14 ISyE8843A, Brani Vidakovic Handout 4 BUGS BUGS is freely available software for constructing Bayesian statistical models and evaluating them using MCMC methodology. BUGS and WINBUGS are distributed freely

More information

Capturing the sampling effects: a TOD sensor performance model

Capturing the sampling effects: a TOD sensor performance model Capturing the sampling effects: a TOD sensor performance model Maarten A. Hogervorst a, Piet Bijl a, J. Mathieu Valeton a a TNO Human Factors, Kampweg 5, 3769 DE Soesterberg, The Netherlands ABSTRACT The

More information

Support Vector Machines

Support Vector Machines Support Vector Machines Chapter 9 Chapter 9 1 / 50 1 91 Maximal margin classifier 2 92 Support vector classifiers 3 93 Support vector machines 4 94 SVMs with more than two classes 5 95 Relationshiop to

More information

2. Unlock the Customization Features: The Edit Button Click the "Edit" button on the Dashboard Home Page to unlock the customization features.

2. Unlock the Customization Features: The Edit Button Click the Edit button on the Dashboard Home Page to unlock the customization features. 1. Introduction: Customize Content for Your Students The Garland Science Learning System (GSLS) is completely customizable. You can edit, delete, or add content to create a unique learning experience for

More information

CREATING SIMULATED DATASETS Edition by G. David Garson and Statistical Associates Publishing Page 1

CREATING SIMULATED DATASETS Edition by G. David Garson and Statistical Associates Publishing Page 1 Copyright @c 2012 by G. David Garson and Statistical Associates Publishing Page 1 @c 2012 by G. David Garson and Statistical Associates Publishing. All rights reserved worldwide in all media. No permission

More information

The powerlaw package: a general overview

The powerlaw package: a general overview The powerlaw package: a general overview Colin S. Gillespie Last updated: August 29, 2017 The powerlaw package provides code to fit heavy tailed distributions, including discrete and continuous power-law

More information

(Not That) Advanced Hierarchical Models

(Not That) Advanced Hierarchical Models (Not That) Advanced Hierarchical Models Ben Goodrich StanCon: January 10, 2018 Ben Goodrich Advanced Hierarchical Models StanCon 1 / 13 Obligatory Disclosure Ben is an employee of Columbia University,

More information

Computational Physics Adaptive, Multi-Dimensional, & Monte Carlo Integration Feb 21, 2019

Computational Physics Adaptive, Multi-Dimensional, & Monte Carlo Integration Feb 21, 2019 Computational Physics Adaptive, Multi-Dimensional, & Monte Carlo Integration Feb 21, 219 http://hadron.physics.fsu.edu/~eugenio/comphy/ eugenio@fsu.edu f(x) trapezoidal rule Series Integration review from

More information

Package visualize. April 28, 2017

Package visualize. April 28, 2017 Type Package Package visualize April 28, 2017 Title Graph Probability Distributions with User Supplied Parameters and Statistics Version 4.3.0 Date 2017-04-27 Depends R (>= 3.0.0) Graphs the pdf or pmf

More information

The relation between disparity and velocity signals of rigidly moving objects constrains depth order perception

The relation between disparity and velocity signals of rigidly moving objects constrains depth order perception Vision Research 47 (2007) 1335 1349 www.elsevier.com/locate/visres The relation between disparity and velocity signals of rigidly moving objects constrains depth order perception Massimiliano Di Luca a,

More information

ACE Tutorial. October, 2013 Byoung K. Choi and Donghun Kang

ACE Tutorial. October, 2013 Byoung K. Choi and Donghun Kang ACE Tutorial October, 2013 Byoung K. Choi and Donghun Kang Objective This document aims to provide a minimum tutorial guide for a beginner to get started with the activity-based simulation tool kit ACE.

More information

Package DengueRT. May 13, 2016

Package DengueRT. May 13, 2016 Type Package Package DengueRT May 13, 2016 Title Parameter Estimates and Real-Time Prediction of a Single Dengue Outbreak Version 1.0.1 Date 2016-04-19 Author Carlos Sebrango, Lizet Sanchez, Ziv Shkedy,

More information

Local Elevation Surface Modeling using GPS Derived Point Clouds. John G. Whitman, Jr.

Local Elevation Surface Modeling using GPS Derived Point Clouds. John G. Whitman, Jr. Local Elevation Surface Modeling using GPS Derived Point Clouds WhitmanJ2@myfairpoint.net Study Area Overview Topographic Background NAIP with Roads and Streams Public DEM Models of Study Area National

More information

SAS/ETS 14.2 User s Guide. The SEVERITY Procedure

SAS/ETS 14.2 User s Guide. The SEVERITY Procedure SAS/ETS 14.2 User s Guide The SEVERITY Procedure This document is an individual chapter from SAS/ETS 14.2 User s Guide. The correct bibliographic citation for this manual is as follows: SAS Institute Inc.

More information