Artifact processing and ERP analysis

Size: px
Start display at page:

Download "Artifact processing and ERP analysis"

Transcription

1 Artifact processing and ERP analysis Task 1 Reject bad channels Task 2 Reject continuous data Task 3 Reject data epochs Task 4 Analysis of channel ERPs Exercise... EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 1

2 Artifact processing and ERP analysis Task 1 Reject bad channels Task 2 Reject continuous data Task 3 Reject data epochs Task 4 Analysis of channel ERPs Exercise... EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 2

3 The example data: faces vs. objects File Data Task../data/faces_3.set 33 channel EEG, nose-tip reference, 250 Hz sampling rate, Hz, 16 bit, BrainAmps speeded discrimination between objects and faces, 500 ms presentation duration, ISI ms, 362 trials EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 3

4 Load/scroll data >> EEG = pop_loadset('faces_3.set', '...\data\'); >> [ALLEEG EEG CURRENTSET] = eeg_store(alleeg, EEG, 0); EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 4

5 Reject bad channels >> pop_eegplot(eeg, 1, 1, 1); EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 5

6 Reject bad channels EEG = pop_select(eeg, 'nochannel', [19 24]); EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 6

7 Reject bad channels EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 7

8 Artifact processing and ERP analysis Task 1 Reject bad channels Task 2 Reject continuous data Task 3 Reject data epochs Task 4 Analysis of channel ERPs Exercise... EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 8

9 Reject continuous data Equivalent!! EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 9

10 Reject continuous data TIP: use ICA for eye blink correction EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 10

11 Reject continuous data To prepare data for ICA, reject odd artifacts and keep stereotyped artifacts Eye blink strange EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 11

12 Artifact processing and ERP analysis Task 1 Reject bad channels Task 2 Reject continuous data Task 3 Reject data epochs Task 4 Analysis of channel ERPs Exercise... EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 12

13 Extract Epochs (review) EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 13

14 Extract Epochs (review) >> EEG = pop_epoch(eeg,{'face' 'object'},[-1 2],... 'newname','faces_3_chans removed epochs',... 'epochinfo','yes'); >> [ALLEEG EEG CURRENTSET] = pop_newset(alleeg,eeg,... CURRENTSET,'setname',' 'faces_3_chans removed epochs '); EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 14

15 Reject data epochs EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 15

16 Reject data epochs visual inspection probability EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 16

17 Reject data epochs Probability (± 5 stds) Visual inspection EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 17

18 Plot channel measures over time EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 18

19 Reject data epochs EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 19

20 Reject data epochs EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 20

21 Reject data epochs >> EEG = pop_jointprob(eeg,1,[1:31],5,5,0,0); >> EEG = pop_rejepoch(eeg,find(eeg.reject.rejglobal),0); EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 21

22 Artifact processing and ERP analysis Task 1 Reject bad channels Task 2 Reject continuous data Task 3 Reject data epochs Task 4 Analysis of channel ERPs Exercise... EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 22

23 Select epochs (review) Create separate data sets for face and object trials >> EEG=pop_selectevent(EEG,'type',{'face'},'deleteevents',... 'off','deleteepochs','on'); >> [ALLEEG EEG CURRENTSET]=pop_newset(ALLEEG,EEG,4,... 'setname','faces only epochs'); EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 23

24 Select epochs (review) Create a new dataset EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 24

25 Select epochs (review) Do the same thing for 'object' epochs >> [EEG,ALLEEG,CURRENTSET]=pop_newset(ALLEEG,EEG,4,... 'retrieve',3,'study',0); >> EEG=pop_selectevent(EEG,'type',{'object'},'deleteevents',... 'off','deleteepochs','on'); >> [ALLEEG EEG CURRENTSET]=pop_newset(ALLEEG,EEG,5,... 'setname','object only epochs'); EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 25

26 Analysis of ERPs >> pop_timtopo(eeg,[ ],[165],'ERP data and scalp maps'); EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 26

27 Analysis of ERPs EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 27

28 Analysis of ERPs >>pop_topoplot(eeg,1,[0:25:200],'face',[3 3],0,'electrodes','off'); EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 28

29 Analysis of ERPs >>pop_headplot(eeg,1,[0:25:200],'erp scalp maps',[3 3],... 'electrodes', 'off'); EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 29

30 Analysis of ERPs 4 5 >>pop_comperp(alleeg,1,[4 5],[],'addavg','off','addstd','off',... 'addall','on','diffavg','off','diffstd','off','lowpass',20,... 'tplotopt',{'ydir',-1}); EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 30

31 Analysis of ERPs EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 31

32 Analysis of ERP differences 4 5 EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 32

33 Analysis of ERP differences ERP difference between 2 conditions EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 33

34 Export EEG data >> pop_export(eeg,'d:\tmp\faces.dat','erp','on',... 'transpose','on','time','off'); EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 34

35 Exercise Load dataset 'faces_3.set' from ' /data/' directory Reject noisy channels (optional: reject continuous data stretches) Epoch dataset on all 'face' and 'object' events Explore 1 or more of the following: Reject noisy epochs by hand or use auto-rejection Compare rejection methods and thresholds Select 'face' and 'object' epochs separately Plot ERPs superimposed ERP envelopes rectangular/scalp array Compare 'face' vs 'object' ERPs Export 'face' ERPs into an ascii file EEGLAB Workshop III, Nov , 2005, Singapore: Julie Onton Artifact processing and ERP analysis 35

ICA decomposition and component analysis

ICA decomposition and component analysis ICA decomposition and component analysis Task 1 Run ICA Exercise... Task 2 Plot components Identify components Task 3 Plot component power Plot component ERP & erpimages Plot ERSP/Cross coherence Exercise...

More information

Data Analysis Methods: Net Station 4.1 By Peter Molfese

Data Analysis Methods: Net Station 4.1 By Peter Molfese Data Analysis Methods: Net Station 4.1 By Peter Molfese Preparing Data for Statistics (preprocessing): 1. Rename your files to correct any typos or formatting issues. a. The General format for naming files

More information

Classic EEG (ERPs)/ Advanced EEG. Quentin Noirhomme

Classic EEG (ERPs)/ Advanced EEG. Quentin Noirhomme Classic EEG (ERPs)/ Advanced EEG Quentin Noirhomme Outline Origins of MEEG Event related potentials Time frequency decomposition i Source reconstruction Before to start EEGlab Fieldtrip (included in spm)

More information

ERPLAB TOOLBOX TUTORIAL

ERPLAB TOOLBOX TUTORIAL ERPLAB TOOLBOX TUTORIAL Version Beta1.1.9 1 July 2010 Tutorial written by Steve Luck, Stan Huang, and Javier Lopez- Calderon ERPLAB Toolbox core designed by Javier Lopez- Calderon and Steve Luck Important

More information

Free software solutions for MEG/EEG source imaging

Free software solutions for MEG/EEG source imaging Free software solutions for MEG/EEG source imaging François Tadel Cognitive Neuroscience & Brain Imaging Lab., CNRS University of Paris - Hôpital de la Salpêtrière Cognitive Neuroimaging Unit, Inserm U562

More information

Overview of Methodology. Human Electrophysiology. Computing and Displaying Difference Waves. Plotting The Averaged ERP

Overview of Methodology. Human Electrophysiology. Computing and Displaying Difference Waves. Plotting The Averaged ERP Human Electrophysiology Overview of Methodology This Week: 1. Displaying ERPs 2. Defining ERP components Analog Filtering Amplification Montage Selection Analog-Digital Conversion Signal-to-Noise Enhancement

More information

NeuroImage 62 (2012) 439 450. Contents lists available at SciVerse ScienceDirect. NeuroImage. journal homepage: www.elsevier.

NeuroImage 62 (2012) 439 450. Contents lists available at SciVerse ScienceDirect. NeuroImage. journal homepage: www.elsevier. NeuroImage 62 (212) 39 5 Contents lists available at SciVerse ScienceDirect NeuroImage journal homepage: www.elsevier.com/locate/ynimg Examining ERP correlates of recognition memory: Evidence of accurate

More information

ERPs in Cognitive Neuroscience

ERPs in Cognitive Neuroscience Center for Neuroscience UNIVERSITY OF CALIFORNIA AT DAVIS ERPs in Cognitive Neuroscience Charan Ranganath Center for Neuroscience and Dept of Psychology, UC Davis EEG and MEG Neuronal activity generates

More information

Documentation Wadsworth BCI Dataset (P300 Evoked Potentials) Data Acquired Using BCI2000's P3 Speller Paradigm (http://www.bci2000.

Documentation Wadsworth BCI Dataset (P300 Evoked Potentials) Data Acquired Using BCI2000's P3 Speller Paradigm (http://www.bci2000. Documentation Wadsworth BCI Dataset (P300 Evoked Potentials) Data Acquired Using BCI2000's P3 Speller Paradigm (http://www.bci2000.org) BCI Competition III Challenge 2004 Organizer: Benjamin Blankertz

More information

Equipment Set-up. Dennis L. Molfese University of Nebraska - Lincoln

Equipment Set-up. Dennis L. Molfese University of Nebraska - Lincoln Equipment Set-up Dennis L. Molfese University of Nebraska - Lincoln 1 The Good Old Days 2 2 Permanent Setup Things to consider: Power source Electrical Grounding Noise (environmental and electrical) Temperature

More information

Package erp.easy. September 26, 2015

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

More information

S.J. Luck ERP Boot Camp All rights reserved

S.J. Luck ERP Boot Camp All rights reserved All rights reserved ERP Boot Camp: Data Analysis Tutorials (for use with BrainVision Analyzer-2 Software) Preparation of these tutorials was made possible by NIH grant R25MH080794 Emily S. Kappenman, Marissa

More information

ARTICLE IN PRESS Neuropsychologia xxx (2010) xxx xxx

ARTICLE IN PRESS Neuropsychologia xxx (2010) xxx xxx Neuropsychologia xxx (2010) xxx xxx Contents lists available at ScienceDirect Neuropsychologia journal homepage: www.elsevier.com/locate/neuropsychologia Adaptation modulates the electrophysiological substrates

More information

Abstract. a11111. Miguel Navarrete 1,3, Catalina Alvarado-Rojas 2,4, Michel Le Van Quyen 2, Mario Valderrama 1 * RESEARCH ARTICLE

Abstract. a11111. Miguel Navarrete 1,3, Catalina Alvarado-Rojas 2,4, Michel Le Van Quyen 2, Mario Valderrama 1 * RESEARCH ARTICLE RESEARCH ARTICLE RIPPLELAB: A Comprehensive Application for the Detection, Analysis and Classification of High Frequency Oscillations in Electroencephalographic Signals Miguel Navarrete 1,3, Catalina Alvarado-Rojas

More information

TECHNICAL SPECIFICATIONS, VALIDATION, AND RESEARCH USE CONTENTS:

TECHNICAL SPECIFICATIONS, VALIDATION, AND RESEARCH USE CONTENTS: TECHNICAL SPECIFICATIONS, VALIDATION, AND RESEARCH USE CONTENTS: Introduction to Muse... 2 Technical Specifications... 3 Research Validation... 4 Visualizing and Recording EEG... 6 INTRODUCTION TO MUSE

More information

Functional neuroimaging. Imaging brain function in real time (not just the structure of the brain).

Functional neuroimaging. Imaging brain function in real time (not just the structure of the brain). Functional neuroimaging Imaging brain function in real time (not just the structure of the brain). The brain is bloody & electric Blood increase in neuronal activity increase in metabolic demand for glucose

More information

EEGLAB: an open source toolbox for analysis of single-trial EEG dynamics including independent component analysis

EEGLAB: an open source toolbox for analysis of single-trial EEG dynamics including independent component analysis Journal of Neuroscience Methods 134 (2004) 9 21 EEGLAB: an open source toolbox for analysis of single-trial EEG dynamics including independent component analysis Arnaud Delorme, Scott Makeig Swartz Center

More information

Stefan Debener a,b, *, Scott Makeig c, Arnaud Delorme c, Andreas K. Engel a,b. Research report

Stefan Debener a,b, *, Scott Makeig c, Arnaud Delorme c, Andreas K. Engel a,b. Research report Cognitive Brain Research 22 (2005) 309 321 Research report What is novel in the novelty oddball paradigm? Functional significance of the novelty P3 event-related potential as revealed by independent component

More information

Electrophysiological responses to visuospatial regularity

Electrophysiological responses to visuospatial regularity Psychophysiology, (2013),. Wiley Periodicals, Inc. Printed in the USA. Copyright 2013 Society for Psychophysiological Research DOI: 10.1111/psyp.12082 Electrophysiological responses to visuospatial regularity

More information

Fif file conversion/importation

Fif file conversion/importation Fif file conversion/importation Reading of sensors positions Reading of MEG data Reading of anatomical landmark Three-dimensional display of magnetometers vs gradiometers Re-labeling of MEG sensors names

More information

Building a Simulink model for real-time analysis V1.15.00. Copyright g.tec medical engineering GmbH

Building a Simulink model for real-time analysis V1.15.00. Copyright g.tec medical engineering GmbH g.tec medical engineering GmbH Sierningstrasse 14, A-4521 Schiedlberg Austria - Europe Tel.: (43)-7251-22240-0 Fax: (43)-7251-22240-39 office@gtec.at, http://www.gtec.at Building a Simulink model for real-time

More information

Independence of Visual Awareness from the Scope of Attention: an Electrophysiological Study

Independence of Visual Awareness from the Scope of Attention: an Electrophysiological Study Cerebral Cortex March 2006;16:415-424 doi:10.1093/cercor/bhi121 Advance Access publication June 15, 2005 Independence of Visual Awareness from the Scope of Attention: an Electrophysiological Study Mika

More information

NeXus: Event-Related potentials Evoked potentials for Psychophysiology & Neuroscience

NeXus: Event-Related potentials Evoked potentials for Psychophysiology & Neuroscience NeXus: Event-Related potentials Evoked potentials for Psychophysiology & Neuroscience This NeXus white paper has been created to educate and inform the reader about the Event Related Potentials (ERP) and

More information

ANIMA: Non-Conventional Interfaces in Robot Control Through Electroencephalography and Electrooculography: Motor Module

ANIMA: Non-Conventional Interfaces in Robot Control Through Electroencephalography and Electrooculography: Motor Module Ninth LACCEI Latin American and Caribbean Conference (LACCEI 2011), Engineering for a Smart Planet, Innovation, Information Technology and Computational Tools for Sustainable Development, August 3-5, 2011,

More information

Cortical Source Localization of Human Scalp EEG. Kaushik Majumdar Indian Statistical Institute Bangalore Center

Cortical Source Localization of Human Scalp EEG. Kaushik Majumdar Indian Statistical Institute Bangalore Center Cortical Source Localization of Human Scalp EEG Kaushik Majumdar Indian Statistical Institute Bangalore Center Cortical Basis of Scalp EEG Baillet et al, IEEE Sig Proc Mag, Nov 2001, p 16 Mountcastle,

More information

Large Scale Electroencephalography Processing With Hadoop

Large Scale Electroencephalography Processing With Hadoop Large Scale Electroencephalography Processing With Hadoop Matthew D. Burns I. INTRODUCTION Apache Hadoop [1] is an open-source implementation of the Google developed MapReduce [3] general programming model

More information

Customer: Cardiff Hospital NHS (United Kingdom) Machine:

Customer: Cardiff Hospital NHS (United Kingdom) Machine: Customer: Cardiff Hospital NHS (United Kingdom) Machine: Bench for leak test Model: Easy TS Page 1 of 7 Date: 6 th March 2012 1. Introduction. Easy TS is a compact and reliable table top bench designed

More information

AOI and X-ray Inspection of PCB Assemblies

AOI and X-ray Inspection of PCB Assemblies AOI and X-ray Inspection of PCB Assemblies Electronic Materials and Assembly Processes for Space (EMPS) Workshop HYTEK, Aalborg, Denmark 29th May 2013 Automatic Optical Inspection (AOI) and X-ray Inspection

More information

Instructions for Setting the T560 Digital Delay Generator for the Target Delay

Instructions for Setting the T560 Digital Delay Generator for the Target Delay Instructions for Setting the T560 Digital Delay Generator for the Target Delay Important! These instructions are only to be followed by beam-line operators who have been trained to operate the target!!

More information

The impact of window size on AMV

The impact of window size on AMV The impact of window size on AMV E. H. Sohn 1 and R. Borde 2 KMA 1 and EUMETSAT 2 Abstract Target size determination is subjective not only for tracking the vector but also AMV results. Smaller target

More information

Decoding Information Processing When Attention Fails: An Electrophysiological Approach

Decoding Information Processing When Attention Fails: An Electrophysiological Approach Decoding Information Processing When Attention Fails: An Electrophysiological Approach ABSTRACT Ryan Kasper, Koel Das, Miguel P. Eckstein, Barry Giesbrecht Department of Psychology Institute for Collaborative

More information

Welcome to SKIL 3 - the most comprehensive quantitative EEG analysis software available

Welcome to SKIL 3 - the most comprehensive quantitative EEG analysis software available Welcome to SKIL 3 - the most comprehensive quantitative EEG analysis software available Features of SKIL 3.0 Normative adult and children databases of four conditions (eyes closed and eyes open rest, age-appropriate

More information

P300 Spelling Device with g.usbamp and Simulink V3.12.03. Copyright 2012 g.tec medical engineering GmbH

P300 Spelling Device with g.usbamp and Simulink V3.12.03. Copyright 2012 g.tec medical engineering GmbH g.tec medical engineering GmbH 4521 Schiedlberg, Sierningstrasse 14, Austria Tel.: (43)-7251-22240-0 Fax: (43)-7251-22240-39 office@gtec.at, http://www.gtec.at P300 Spelling Device with g.usbamp and Simulink

More information

COC131 Data Mining - Clustering

COC131 Data Mining - Clustering COC131 Data Mining - Clustering Martin D. Sykora m.d.sykora@lboro.ac.uk Tutorial 05, Friday 20th March 2009 1. Fire up Weka (Waikako Environment for Knowledge Analysis) software, launch the explorer window

More information

Using Brainmaster Discovery & Atlantis devices with OpenViBE

Using Brainmaster Discovery & Atlantis devices with OpenViBE Using Brainmaster Discovery & Atlantis devices with OpenViBE The Brainmaster Discovery and Atlantis driver of the OpenViBE acquisition server is dedicated to Brainmaster devices. These devices have been

More information

Quality Inspection-Reports

Quality Inspection-Reports Quality Inspection-Reports There are various Icons available in Quality Inspection Module which is as Group 1 : Data updation Doing Inward QC (( Explained in a separate manual )) Doing Outward QC (( Explained

More information

BAL2-1 Professional Skills for the Business Analyst

BAL2-1 Professional Skills for the Business Analyst 1 BAL2-1 Professional Skills for the Business Analyst OVERVIEW This course trains participants to help business clients articulate their needs and wants, and to document them clearly, concisely, and completely.

More information

Command-induced Tracking Jitter Study I D. Clark November 24, 2009

Command-induced Tracking Jitter Study I D. Clark November 24, 2009 Command-induced Tracking Jitter Study I D. Clark November 24, 2009 Introduction Reports of excessive tracking jitter on the MMT elevation axis have lately been theorized to be caused by the input command

More information

An electrophysiological assessment of distractor suppression in visual search tasks

An electrophysiological assessment of distractor suppression in visual search tasks Psychophysiology, 46 (2009), 771 775. Wiley Periodicals, Inc. Printed in the USA. Copyright r 2009 Society for Psychophysiological Research DOI: 10.1111/j.1469-8986.2009.00814.x BRIEF REPORT An electrophysiological

More information

Practical Web Analytics for User Experience

Practical Web Analytics for User Experience Practical Web Analytics for User Experience How Analytics Can Help You Understand Your Users Michael Beasley UX Designer, ITHAKA Ypsilanti, Michigan, USA üf IBs fmij ELSEVIER Amsterdam Boston Heidelberg

More information

COST AID ASL post- processing Workshop

COST AID ASL post- processing Workshop COST AID ASL post- processing Workshop This workshop runs thought the post- processing of ASL data using tools from the FMRIB Software Library (www.fmrib.ox.ac.uk.uk/fsl), we will primarily focus on the

More information

How To Create A Signal Data System

How To Create A Signal Data System Biomedical Big Data for Clinical Research and Patient Care: Role of Semantic Computing Satya S. Sahoo Division Medical Informatics Case Western Reserve University June 17, 2014 1200 Signal Big Data: Research

More information

Predictive Asset Maintenance

Predictive Asset Maintenance Predictive Asset Maintenance Role of Business Analytics Intelligence Framework ASSET INTELLIGENCE Optimisation What is the best that could happen? Business Maturity & Value DCS Historian Vibration Data

More information

Andrea Greve, a, Mark C.W. van Rossum, a,1 and David I. Donaldson b,2. Introduction

Andrea Greve, a, Mark C.W. van Rossum, a,1 and David I. Donaldson b,2. Introduction www.elsevier.com/locate/ynimg NeuroImage 34 (2007) 801 814 Investigating the functional interaction between semantic and episodic memory: Convergent behavioral and electrophysiological evidence for the

More information

MOVING-WINDOW ICA DECOMPOSITION OF EEG DATA REVEALS EVENT-RELATED CHANGES IN OSCILLATORY BRAIN ACTIVITY

MOVING-WINDOW ICA DECOMPOSITION OF EEG DATA REVEALS EVENT-RELATED CHANGES IN OSCILLATORY BRAIN ACTIVITY MOVING-WINDOW ICA DECOMPOSITION OF EEG DATA REVEALS EVENT-RELATED CHANGES IN OSCILLATORY BRAIN ACTIVITY Scott Makeig*, Sigurd Enghoff (3,4). Tzyy-Ping Jung (3,5,6) and Terrence J. Sejnowski (2,3,5,6) *Naval

More information

International Journal of Computer Trends and Technology (IJCTT) volume 4 Issue 8 August 2013

International Journal of Computer Trends and Technology (IJCTT) volume 4 Issue 8 August 2013 A Short-Term Traffic Prediction On A Distributed Network Using Multiple Regression Equation Ms.Sharmi.S 1 Research Scholar, MS University,Thirunelvelli Dr.M.Punithavalli Director, SREC,Coimbatore. Abstract:

More information

Hands-on: Data analysis and advanced scripting. Mario Orsi m.orsi@qmul.ac.uk www.orsi.sems.qmul.ac.uk

Hands-on: Data analysis and advanced scripting. Mario Orsi m.orsi@qmul.ac.uk www.orsi.sems.qmul.ac.uk Hands-on: Data analysis and advanced scripting Mario Orsi m.orsi@qmul.ac.uk www.orsi.sems.qmul.ac.uk LAMMPS workshop, ICTP Trieste, 25 March 2014 Learning objectives On-the-fly analysis: use LAMMPS to

More information

Author: Dr. Society of Electrophysio. Reference: Electrodes. should include: electrode shape size use. direction.

Author: Dr. Society of Electrophysio. Reference: Electrodes. should include: electrode shape size use. direction. Standards for Reportin ng EMG Data Author: Dr. Roberto Merletti, Politecnico di Torino, Italy The Standards for Reporting EMG Data, written by Dr. Robertoo Merletti, are endorsed by the International Society

More information

Memory for perceived and imagined pictures an event-related potential study

Memory for perceived and imagined pictures an event-related potential study Neuropsychologia 40 (2002) 986 1002 Memory for perceived and imagined pictures an event-related potential study M. Johansson a,, G. Stenberg b, M. Lindgren a,c, I. Rosén c a Department of Psychology, Lund

More information

A pragmatic look at higher frame rates in Digital Cinema

A pragmatic look at higher frame rates in Digital Cinema Barco A pragmatic look at higher frame rates in Digital Cinema Author Tom Bert Product Marketing Manager Barco Page 1 of 8 INTRODUCTION The digitization of cinema projection started around the year 2000.

More information

METHODS FOR IMPROVING THE CLASSIFICATION ACCURACY OF BIOMEDICAL SIGNALS BASED ON SPECTRAL FEATURES

METHODS FOR IMPROVING THE CLASSIFICATION ACCURACY OF BIOMEDICAL SIGNALS BASED ON SPECTRAL FEATURES International Journal of Advanced Research in Engineering and Technology (IJARET) Volume 7, Issue 1, Jan-Feb 2016, pp. 105-116, Article ID: IJARET_07_01_013 Available online at http://www.iaeme.com/ijaret/issues.asp?jtype=ijaret&vtype=7&itype=1

More information

SWABIK Project. Software Tools for DICOM Media Exchange in Clinical Research: the. SWABIK Project

SWABIK Project. Software Tools for DICOM Media Exchange in Clinical Research: the. SWABIK Project Software Tools for DICOM Media Exchange in Clinical Research: the SWABIK Project Software Tools for DICOM Media Exchange in Clinical Research: the SWABIK Project O. ElGazzar 1, M. Onken 1, M. Eichelberg

More information

PRODUCT SHEET. info@biopac.com support@biopac.com www.biopac.com

PRODUCT SHEET. info@biopac.com support@biopac.com 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

More information

BrainMaster tm System Type 2E Module & BMT Software for Windows tm. Helpful Hints

BrainMaster tm System Type 2E Module & BMT Software for Windows tm. Helpful Hints . BrainMaster tm System Type 2E Module & BMT Software for Windows tm Helpful Hints 1995-2004 BrainMaster Technologies, Inc., All Rights Reserved BrainMaster and From the Decade of the Brain are registered

More information

Big Data Visualisations. Professor Ian Nabney i.t.nabney@aston.ac.uk NCRG

Big Data Visualisations. Professor Ian Nabney i.t.nabney@aston.ac.uk NCRG Big Data Visualisations Professor Ian Nabney i.t.nabney@aston.ac.uk NCRG Overview Why visualise data? How we can visualise data Big Data Institute What is Visualisation? Goal of visualisation is to present

More information

Get The Picture: Visualizing Financial Data part 1

Get The Picture: Visualizing Financial Data part 1 Get The Picture: Visualizing Financial Data part 1 by Jeremy Walton Turning numbers into pictures is usually the easiest way of finding out what they mean. We're all familiar with the display of for example

More information

RIC 2007 SNAP: Symbolic Nuclear Analysis Package. Chester Gingrich USNRC/RES 3/13/07

RIC 2007 SNAP: Symbolic Nuclear Analysis Package. Chester Gingrich USNRC/RES 3/13/07 RIC 2007 SNAP: Symbolic Nuclear Analysis Package Chester Gingrich USNRC/RES 3/13/07 1 SNAP: What is it? Standard Graphical User Interface designed to simplify the use of USNRC analytical codes providing:

More information

BANDWIDTH AFFECTS VISUAL LATERAL INTERACTIONS

BANDWIDTH AFFECTS VISUAL LATERAL INTERACTIONS BANDWIDTH AFFECTS VISUAL LATERAL INTERACTIONS Russell L Woods, Alex K Nugent, Eli Peli The Schepens Eye Research Institute, Harvard Medical School, Boston, MA Abstract Purpose: Usually a co-local, high-contrast

More information

Movement artifacts electrical noise caused by the movement of the sensor surface with respect to the skin surface

Movement artifacts electrical noise caused by the movement of the sensor surface with respect to the skin surface BIOHARNESS 42 Aero Camino, Goleta, CA 93117 Tel (805) 685-0066 Fax (805) 685-0067 info@biopac.com www.biopac.com 12.15.08 Field Comparison: Zephyr BioHarness / Polar HR Monitor Introduction The Zephyr

More information

Business Intelligence and Process Modelling

Business Intelligence and Process Modelling Business Intelligence and Process Modelling F.W. Takes Universiteit Leiden Lecture 2: Business Intelligence & Visual Analytics BIPM Lecture 2: Business Intelligence & Visual Analytics 1 / 72 Business Intelligence

More information

Bijan Raahemi, Ph.D., P.Eng, SMIEEE Associate Professor Telfer School of Management and School of Electrical Engineering and Computer Science

Bijan Raahemi, Ph.D., P.Eng, SMIEEE Associate Professor Telfer School of Management and School of Electrical Engineering and Computer Science Bijan Raahemi, Ph.D., P.Eng, SMIEEE Associate Professor Telfer School of Management and School of Electrical Engineering and Computer Science University of Ottawa April 30, 2014 1 Data Mining Data Mining

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

RESEARCH ON SPOKEN LANGUAGE PROCESSING Progress Report No. 29 (2008) Indiana University

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

More information

LSA SAF products: files and formats

LSA SAF products: files and formats LSA SAF products: files and formats Carla Barroso, IPMA Application of Remote Sensing Data for Drought Monitoring Introduction to Eumetsat LANDSAF Products 11-15 November Slovenia OUTLINE Where to get

More information

MultiAlign Software. Windows GUI. Console Application. MultiAlign Software Website. Test Data

MultiAlign Software. Windows GUI. Console Application. MultiAlign Software Website. Test Data MultiAlign Software This documentation describes MultiAlign and its features. This serves as a quick guide for starting to use MultiAlign. MultiAlign comes in two forms: as a graphical user interface (GUI)

More information

An Introduction to ERP Studies of Attention

An Introduction to ERP Studies of Attention An Introduction to ERP Studies of Attention Logan Trujillo, Ph.D. Post-Doctoral Fellow University of Texas at Austin Cognitive Science Course, Fall 2008 What is Attention? Everyone knows what attention

More information

Other Analytical Techniques. Nick Salkowski SRTR February 13, 2012

Other Analytical Techniques. Nick Salkowski SRTR February 13, 2012 Other Analytical Techniques Nick Salkowski SRTR February 13, 2012 Control Charts and Control Limits 1 Control Charts: Routinely monitor quality Distinguish between in-control and out-of-control processes

More information

MultiQuant Software 2.0 for Targeted Protein / Peptide Quantification

MultiQuant Software 2.0 for Targeted Protein / Peptide Quantification MultiQuant Software 2.0 for Targeted Protein / Peptide Quantification Gold Standard for Quantitative Data Processing Because of the sensitivity, selectivity, speed and throughput at which MRM assays can

More information

Intelligent Process Management & Process Visualization. TAProViz 2014 workshop. Presenter: Dafna Levy

Intelligent Process Management & Process Visualization. TAProViz 2014 workshop. Presenter: Dafna Levy Intelligent Process Management & Process Visualization TAProViz 2014 workshop Presenter: Dafna Levy The Topics Process Visualization in Priority ERP Planning Execution BI analysis (Built-in) Discovering

More information

Prepare your result file for input into SPSS

Prepare your result file for input into SPSS Prepare your result file for input into SPSS Isabelle Darcy When you use DMDX for your experiment, you get an.azk file, which is a simple text file that collects all the reaction times and accuracy of

More information

EXERCISE 3: String Variables and ASCII Code

EXERCISE 3: String Variables and ASCII Code EXERCISE 3: String Variables and ASCII Code EXERCISE OBJECTIVE When you have completed this exercise, you will be able to describe the use of string variable and ASCII code. You will use Flowcode and the

More information

A Study of Brainwave Entrainment Based on EEG Brain Dynamics

A Study of Brainwave Entrainment Based on EEG Brain Dynamics A Study of Brainwave Entrainment Based on EEG Brain Dynamics Tianbao Zhuang School of Educational Technology, Shenyang Normal University Shenyang 110034, China E-mail: bfztb@sina.com Hong Zhao Graduate

More information

Evaluation of Attention and Relaxation Levels of Archers in Shooting Process using Brain Wave Signal Analysis Algorithms. NeuroSky Inc.

Evaluation of Attention and Relaxation Levels of Archers in Shooting Process using Brain Wave Signal Analysis Algorithms. NeuroSky Inc. , Vol. 12, No 3, pp.341-350, September 2009 Evaluation of Attention and Relaxation Levels of Archers in Shooting Process using Brain Wave Signal Analysis Algorithms KooHyoung Lee NeuroSky Inc. khlee@neurosky.com

More information

AIR DRM. DRM+ Showcase

AIR DRM. DRM+ Showcase AIR DRM DRM+ Showcase New Delhi, 23 rd 27 th May 2011 The Report was prepared by Digital Radio Mondiale Consortium (DRM) & All India Radio (AIR) Version: 2011-07-26 Index: 1. Introduction 2. DRM+ System

More information

Electrophysiological studies of prosody

Electrophysiological studies of prosody Electrophysiological studies of prosody Mireille Besson Equipe Langage, Musique et Motricité Institut de Neurosciences Cognitives de la Méditerranée CNRS-Marseille BrainTalk 2-4 june, 2008 Lund, Sweden

More information

Effects of Mobile Phone Radiation on Brain

Effects of Mobile Phone Radiation on Brain Effects of Mobile Phone Radiation on Brain Using Statistical Parameters and Its Derivatives C. K. Smitha 1, N. K. Narayanan 2 Department of Electronics & Instrumentation Engineering College of Engineering,

More information

OPENGATE DATABASE MANAGER FOR MICROSOFT ACCESS

OPENGATE DATABASE MANAGER FOR MICROSOFT ACCESS OPENGATE DATABASE MANAGER FOR MICROSOFT ACCESS Application Guide Version 2 2.12.2014 This document is copyright 2007-2014 OpenGate Software. The information contained in this document is subject to change

More information

Spike-Based Sensing and Processing: What are spikes good for? John G. Harris Electrical and Computer Engineering Dept

Spike-Based Sensing and Processing: What are spikes good for? John G. Harris Electrical and Computer Engineering Dept Spike-Based Sensing and Processing: What are spikes good for? John G. Harris Electrical and Computer Engineering Dept ONR NEURO-SILICON WORKSHOP, AUG 1-2, 2006 Take Home Messages Introduce integrate-and-fire

More information

Copyright 2012, SAS Institute Inc. All rights reserved. VISUALIZATION OF STANDARD TLFS FOR CLINICAL TRIAL DATA ANALYSIS

Copyright 2012, SAS Institute Inc. All rights reserved. VISUALIZATION OF STANDARD TLFS FOR CLINICAL TRIAL DATA ANALYSIS VISUALIZATION OF STANDARD TLFS FOR CLINICAL TRIAL DATA ANALYSIS WENJUN BAO AND JASON CHEN JMP, SAS INC. PHUSE, SHANGHAI, NOV 28, 2014 OUTLINES: CDISC Standard SDTM ADaM Interactive Standardized TLFs Tables

More information

Data Protocol UvA Psychology - background information

Data Protocol UvA Psychology - background information Data Protocol UvA Psychology - background information Data storage at various points of the experimental research life cycle Jaap Murre, Department of Psychology, University of Amsterdam Introduction This

More information

Module 5: Statistical Analysis

Module 5: Statistical Analysis Module 5: Statistical Analysis To answer more complex questions using your data, or in statistical terms, to test your hypothesis, you need to use more advanced statistical tests. This module reviews the

More information

Study on Brainwave Responses from Ears: the Event-related Synchronization under the Auditory Stimulus

Study on Brainwave Responses from Ears: the Event-related Synchronization under the Auditory Stimulus Study on Brainwave Responses from Ears: the Event-related Synchronization under the Auditory Stimulus Huiran Zhang Graduate School of Innovative Life Science, University of Toyama Toyama, Japan Tel: 81-090-8261-8208

More information

False discovery rate and permutation test: An evaluation in ERP data analysis

False discovery rate and permutation test: An evaluation in ERP data analysis Research Article Received 7 August 2008, Accepted 8 October 2009 Published online 25 November 2009 in Wiley Interscience (www.interscience.wiley.com) DOI: 10.1002/sim.3784 False discovery rate and permutation

More information

Accountable Care Organization Quality Explorer. Quick Start Guide

Accountable Care Organization Quality Explorer. Quick Start Guide Accountable Care Organization Quality Explorer Quick Start Guide 1 P age Background HealthLandscape (a division of the American Academy of Family Physicians [AAFP]) and the Robert Graham Center for Policy

More information

Implementation of a 3-Dimensional Game for developing balanced Brainwave

Implementation of a 3-Dimensional Game for developing balanced Brainwave Fifth International Conference on Software Engineering Research, Management and Applications Implementation of a 3-Dimensional Game for developing balanced Brainwave Beom-Soo Shim, Sung-Wook Lee and Jeong-Hoon

More information

Conners' Continuous Performance Test II (CPT II V.5)

Conners' Continuous Performance Test II (CPT II V.5) Conners' Continuous Performance Test II (CPT II V.5) By C. Keith Conners, Ph.D. and MHS Staff Profile Report This report is intended to be used by the test administrator as an interpretive aid. This report

More information

The Australian EEG Database

The Australian EEG Database The Australian EEG Database M. Hunter, R. L. L. Smith, W. Hyslop, O. A. Rosso, R. Gerlach, J. A. P. Rostas, D. B. Williams and F. Henskens Key Words Absence Epilepsy Databases Developmental Language Disorders

More information

8B/10B Coding 64B/66B Coding

8B/10B Coding 64B/66B Coding 8B/10B Coding 64B/66B Coding 1. Transmission Systems 2. 8B/10B Coding 3. 64B/66B Coding 4. CIP Demonstrator Test Setup PeterJ Slide 1 Transmission system General Data Clock D C Flip Flop Q @ 1 Gbps = 1

More information

CCNY. BME I5100: Biomedical Signal Processing. Linear Discrimination. Lucas C. Parra Biomedical Engineering Department City College of New York

CCNY. BME I5100: Biomedical Signal Processing. Linear Discrimination. Lucas C. Parra Biomedical Engineering Department City College of New York BME I5100: Biomedical Signal Processing Linear Discrimination Lucas C. Parra Biomedical Engineering Department CCNY 1 Schedule Week 1: Introduction Linear, stationary, normal - the stuff biology is not

More information

TIETS34 Seminar: Data Mining on Biometric identification

TIETS34 Seminar: Data Mining on Biometric identification TIETS34 Seminar: Data Mining on Biometric identification Youming Zhang Computer Science, School of Information Sciences, 33014 University of Tampere, Finland Youming.Zhang@uta.fi Course Description Content

More information

DeNoiser Plug-In. for USER S MANUAL

DeNoiser Plug-In. for USER S MANUAL DeNoiser Plug-In for USER S MANUAL 2001 Algorithmix All rights reserved Algorithmix DeNoiser User s Manual MT Version 1.1 7/2001 De-NOISER MANUAL CONTENTS INTRODUCTION TO NOISE REMOVAL...2 Encode/Decode

More information

Electrophysiological Activity Generated During the Implicit Association Test: A Study Using

Electrophysiological Activity Generated During the Implicit Association Test: A Study Using The Psychological Record, 009, 59, 07 0 Electrophysiological Activity Generated During the Implicit Association Test: A Study Using Event-Related Potentials Catriona O Toole and Dermot Barnes-Holmes National

More information

EMF16 and Model 201 Graphics Software for Win 98/NT/ME/2K/XP/Vista/Win7/Win8 and Win10

EMF16 and Model 201 Graphics Software for Win 98/NT/ME/2K/XP/Vista/Win7/Win8 and Win10 Lawson Labs, Inc. 3217 Phoenixville Pike Malvern, PA 19355 800-321-5355 or 610 725-8800 FAX 610 725-9344 www.lawsonlabs.com lawsnlab@lawsonlabs.com EMF16 and Model 201 Graphics Software for Win 98/NT/ME/2K/XP/Vista/Win7/Win8

More information

A Case of Study on Hadoop Benchmark Behavior Modeling Using ALOJA-ML

A Case of Study on Hadoop Benchmark Behavior Modeling Using ALOJA-ML www.bsc.es A Case of Study on Hadoop Benchmark Behavior Modeling Using ALOJA-ML Josep Ll. Berral, Nicolas Poggi, David Carrera Workshop on Big Data Benchmarks Toronto, Canada 2015 1 Context ALOJA: framework

More information

Migrate to invest? An Analysis of Direct and Indirect Effects of International Migration on Personal Investment in Senegal

Migrate to invest? An Analysis of Direct and Indirect Effects of International Migration on Personal Investment in Senegal Migrate to invest? An Analysis of Direct and Indirect Effects of International Migration on Personal Investment in Senegal Cora Mezger Cris Beauchemin INED, Paris Entre parcours de vie des migrants & attentes

More information

Regression 3: Logistic Regression

Regression 3: Logistic Regression Regression 3: Logistic Regression Marco Baroni Practical Statistics in R Outline Logistic regression Logistic regression in R Outline Logistic regression Introduction The model Looking at and comparing

More information

Evolution of a Brain-Computer Interface Mouse

Evolution of a Brain-Computer Interface Mouse Evolution of a Brain-Computer Interface Mouse via Genetic Programming Riccardo Poli, Mathew Salvaris, and Caterina Cinel School of Computer Science and Electronic Engineering, University of Essex, Wivenhoe

More information

Acid-Base Titrations Using ph Measurements

Acid-Base Titrations Using ph Measurements Acid-Base Titrations Using ph Measurements Introduction According to the Brønsted Lowry definition, an acid is a substance that donates a hydrogen ion and a base is a substance which will accept a hydrogen

More information

Free 15-day trial. Signata Waveform Viewer Datasheet

Free 15-day trial. Signata Waveform Viewer Datasheet The Signata Waveform Viewer allows you to view and analyze data captured from your oscilloscope anytime and anywhere. You will gain instant insight into device performance, quickly determine the root cause

More information

SVMon Sound Velocity Monitor Manual

SVMon Sound Velocity Monitor Manual 1 SVMon Sound Velocity Monitor Manual 2 1. Contents. 1. Contents... 2 2. Function... 2 3. Getting started.... 3 3.1. Starting the program.... 3 4. The main window... 3 5. The menu bar... 5 5.1. File -

More information