Individual Differences & Item Effects: How to test them, & how to test them well

Size: px
Start display at page:

Download "Individual Differences & Item Effects: How to test them, & how to test them well"

Transcription

1 Individual Differences & Item Effects: How to test them, & how to test them well

2 Individual Differences & Item Effects Properties of subjects Cognitive abilities (WM task scores, inhibition) Gender Age Properties of items Lexical frequency Segmental properties Plausibility L2 proficiency Task strategy

3 Two Challenges Subject & item properties are not at the level of individual trials How to implement in your model? What do they mean statistically? Subject & item properties often not experimentally manipulated How to best investigate?

4 Example Study Fraundorf et al., 2010 Both the British and the French biologists had been searching Malaysia and Indonesia for the endangered monkeys. Finally, the British spotted one of the monkeys in MALAYSIA and planted a radio tag on it. British found it or French found it? In Malaysia or in Indonesia? INTRO. EXPT 1 EXPT 2 DISC.

5 Manipulate presentational vs contrastive accents Finally, the British spotted one of the monkeys in MALAYSIA... Finally, the BRITISH spotted one of the monkeys in Malaysia... Finally, the BRITISH spotted one of the monkeys in MALAYSIA... Finally, the British spotted one of the monkeys in Malaysia... INTRO. EXPT 1 EXPT 2 DISC.

6 Original Results Contrastive (L+H*) accent benefits memory No effect of accent on other item Effects seem localized INTRO. EXPT 1 EXPT 2 DISC.

7 Implementing in R New experiment: do these effects vary with individual differences in working memory? Need trial level and subject level variables in the same dataframe

8 Implementing in R Then, can add to model just like any other factor: lmer(correct ~ Accent * WM_Score + (1 Subject) + (1 StoryID), family=binomial) R automatically figures out it's subject-level Each subject always has the same score

9 Merging Dataframes What if trials & subjects in separate files? Data1: Trial-level Data2: Subject-level Load them both into R and use merge: FullDataframe = merge(data1, Data2, all.x=true)

10 Merging Dataframes But, these may be separate files Data1: Trial-level Data2: Subject-level Load them both into R and use merge: FullDataframe = merge(data1, Data2, all.x=true) Need some column that has the same name in both data frames

11 Merging Dataframes Load them both into R and use merge: FullDataframe = merge(data1, Data2, all.x=true) Need some column that has the same name in both data frames Can specify WHICH columns to use with the by parameter. See?merge for more details. Default is to delete subjects if they can't be matched across data frames. all.x = TRUE fills in NA values instead so you can track these subjects

12 What's Going On Statistically? LEVEL 2: Subjects, Items Knight story Monkey story LEVEL 1: Trial Knight Monkey Knight Monkey

13 What's Going On Statistically? LEVEL 2: Subjects, Items Knight Monkey Have random effects of our subjects & items. Results in residuals: Eun-Kyung accuracy: 80% Tuan accuracy: 72% +4 vs mean -4 vs mean Level 2 factors may help us explain this variation

14 What's Going On Statistically? Model without WM: Unexplained variance between subjects Model with main effect of WM: Unexplained subject variance reduced Fixed effects unchanged because these were manipulated within subjects

15 Random Slopes & Adding main effects at Level 2 will not change fixed effects at Level 1 But can also add INTERACTIONS with trial level factors These help explain the random slopes

16 Effect of Subject-Level Variables Remember random slopes? Variance between subjects in a fixed effect Memory Accuracy Alison Zhenghan Other Item Has Presentational Accent Other Item Has Contrastive Accent

17 Random Slopes & Adding main effects at Level 2 will not change fixed effects at Level 1 But can also add INTERACTIONS These help explain the random slopes May be more interesting, theoretically People with low WM scores DO show a penalty to memory if something else in the story gets a contrastive accent

18 Random Slopes & Illogical to have a random slope by subject for something at the subject level There isn't a separate WM effect for each subject lmer lets you fit this but I'm not sure what it represents

19 Individual Differences: How to Do Them Well What Scott has learned from the individual differences literature Example study: Pitch accenting as cue to reference resolution (deaccented referents are usually given) Can we predict individual differences in use of this cue?

20 Discriminant Validity Many individual differences are correlated

21 Discriminant Validity Many individual differences are correlated e.g. some subjects may just try harder than others Consequently, they would do better on both WM task & eye-tracking task Usually not theoretically interesting Principle #1: Include >1 construct so we know what really matters

22 Discriminant Validity How to deal with correlated predictors? Simple solution: Regress 1 on the other ModelWM <- lm(wmmean ~ PSpeed, data=cyclops) Then use the residuals as new measure Cyclops$ResidWM <- residuals(modelwm) The part of WM we couldn't explain from perceptual speed Better solutions: path analysis & structural equation modeling

23 Discriminant Validity

24 Discriminant Validity Here you select which variables go in the scatterplot Some people asked about how to get these colored scatterplots... Need to download & load package gclus Then... Cyclops.short <- subset(cyclops, select=c('pspeed', 'GoodProsody', 'ResidWM')) Cyclops.r <- abs(cor(cyclops.short, use="pairwise.complete.obs")) Cyclops.col <- dmat.color(cyclops.r) Cyclops.o order.single(cyclops.col) cpairs(cyclops.short, Cyclops.o, panel.colors=cyclops.col, gap=.5)

25 Reliability Not all individual measures are good measures Measures may be noisy Measures may not measure a stable or meaningful characteristic Suppose you found vocab predicted outcome but not WM Maybe you had a bad WM measure

26 Reliability Good tests produce consistent scores Measuring something real about a person Can test this yourself with >1 assessment or split halves Calculate Pearson's r: cor.test(cyclops$pspeed1, Cyclops$PSpeed2) Scatterplot: plot(cyclops$pspeed1, Cyclops$PSpeed2) Typical standard may be r = needed for good reliability

27 Reliability Good tests produce consistent scores Measuring something real about a person Can test this yourself with >1 assessment or split halves r =.77 Good! r =.16 Bad! Principle 2: Check reliability of measures!

28 Latent Variables Some things can be measured directly e.g. gender of a subject, segmental properties of a work Many things in psychology measured indirectly i n k Ə d Ability to do tasks in spite of interference Alphabet Span Task (Read words & recall alphabeticaly)

29 Latent Variables But, few tasks are process pure Alphabet knowledge Alphabet Span Working memory Reading Span Reading ability

30 Latent Variables Principle 3: Overcome task-specific factors with multiple measures of same construct Simple analysis: Use sum or average as your predictor Advanced techniques Verify measures are related with factor analysis Examine only common variance: latent variable analysis, structural equation modeling

31 Continuous Predictors Many individual differences are continuous Good to include continuous variation if you have full range Splits needed in ANOVA But throws away info.; less powerful Histogram: hist(cyclops$wm, breaks=20)

32 Continuous Predictors Don't want to treat predictor as continuous if sampling was dichotomous In this case, we didn't sample middle-aged people

33 Continuous Predictors Don't want to treat predictor as continuous if sampling was dichotomous Pattern could be this...

34 Continuous Predictors Don't want to treat predictor as continuous if sampling was dichotomous...or this!

35 Continuous Predictors Don't want to treat predictor as continuous if sampling was dichotomous Here there be dragons We have no info. about what should be in the middle

36 Comparing Predictors How do we tell which has a stronger effect? QVT QVR TEMERITY (A) rashness (B) timidity (C) desire (D) kindness Perceptual Speed Measure: # of same/different judgments in 2 min. Beta = add'l trial: prosody score + 6 Vocab Measure: # of multiplechoice Qs correct of 40 Beta = add'l correct word: prosody score + 15

37 Comparing Predictors Issue: Measures often on different scales Perceptual Speed Beta = 6.03 Range: 82 to 236 Mean: 160 Std. Dev.: Vocab Beta = Range: to Mean: Std. Dev.: 5.30

38 Center so mean = 0 Comparing Predictors Issue: Measures often on different scales Solution: Standardize the predictors so you are comparing z scores Cyclops$Vocab_z = scale(cyclops$vocab, center=true, scale=true) Changes your parameter estimates but not your hypothesis tests Perceptual speed: Standardized beta =.31 Vocab: Standardized beta =.14 Scale so SD = 1

39 Comparing Predictors

Probability and Statistics Curriculum Pacing Guide

Probability and Statistics Curriculum Pacing Guide Unit 1 Terms PS.SPMJ.3 PS.SPMJ.5 Plan and conduct a survey to answer a statistical question. Recognize how the plan addresses sampling technique, randomization, measurement of experimental error and methods

More information

5 Guidelines for Learning to Spell

5 Guidelines for Learning to Spell 5 Guidelines for Learning to Spell 1. Practice makes permanent Did somebody tell you practice made perfect? That's only if you're practicing it right. Each time you spell a word wrong, you're 'practicing'

More information

Session 2B From understanding perspectives to informing public policy the potential and challenges for Q findings to inform survey design

Session 2B From understanding perspectives to informing public policy the potential and challenges for Q findings to inform survey design Session 2B From understanding perspectives to informing public policy the potential and challenges for Q findings to inform survey design Paper #3 Five Q-to-survey approaches: did they work? Job van Exel

More information

Instructor: Mario D. Garrett, Ph.D. Phone: Office: Hepner Hall (HH) 100

Instructor: Mario D. Garrett, Ph.D.   Phone: Office: Hepner Hall (HH) 100 San Diego State University School of Social Work 610 COMPUTER APPLICATIONS FOR SOCIAL WORK PRACTICE Statistical Package for the Social Sciences Office: Hepner Hall (HH) 100 Instructor: Mario D. Garrett,

More information

Corpus Linguistics (L615)

Corpus Linguistics (L615) (L615) Basics of Markus Dickinson Department of, Indiana University Spring 2013 1 / 23 : the extent to which a sample includes the full range of variability in a population distinguishes corpora from archives

More information

PROFESSIONAL TREATMENT OF TEACHERS AND STUDENT ACADEMIC ACHIEVEMENT. James B. Chapman. Dissertation submitted to the Faculty of the Virginia

PROFESSIONAL TREATMENT OF TEACHERS AND STUDENT ACADEMIC ACHIEVEMENT. James B. Chapman. Dissertation submitted to the Faculty of the Virginia PROFESSIONAL TREATMENT OF TEACHERS AND STUDENT ACADEMIC ACHIEVEMENT by James B. Chapman Dissertation submitted to the Faculty of the Virginia Polytechnic Institute and State University in partial fulfillment

More information

B. How to write a research paper

B. How to write a research paper From: Nikolaus Correll. "Introduction to Autonomous Robots", ISBN 1493773070, CC-ND 3.0 B. How to write a research paper The final deliverable of a robotics class often is a write-up on a research project,

More information

12- A whirlwind tour of statistics

12- A whirlwind tour of statistics CyLab HT 05-436 / 05-836 / 08-534 / 08-734 / 19-534 / 19-734 Usable Privacy and Security TP :// C DU February 22, 2016 y & Secu rivac rity P le ratory bo La Lujo Bauer, Nicolas Christin, and Abby Marsh

More information

On-the-Fly Customization of Automated Essay Scoring

On-the-Fly Customization of Automated Essay Scoring Research Report On-the-Fly Customization of Automated Essay Scoring Yigal Attali Research & Development December 2007 RR-07-42 On-the-Fly Customization of Automated Essay Scoring Yigal Attali ETS, Princeton,

More information

Mandarin Lexical Tone Recognition: The Gating Paradigm

Mandarin Lexical Tone Recognition: The Gating Paradigm Kansas Working Papers in Linguistics, Vol. 0 (008), p. 8 Abstract Mandarin Lexical Tone Recognition: The Gating Paradigm Yuwen Lai and Jie Zhang University of Kansas Research on spoken word recognition

More information

STA 225: Introductory Statistics (CT)

STA 225: Introductory Statistics (CT) Marshall University College of Science Mathematics Department STA 225: Introductory Statistics (CT) Course catalog description A critical thinking course in applied statistical reasoning covering basic

More information

Unraveling symbolic number processing and the implications for its association with mathematics. Delphine Sasanguie

Unraveling symbolic number processing and the implications for its association with mathematics. Delphine Sasanguie Unraveling symbolic number processing and the implications for its association with mathematics Delphine Sasanguie 1. Introduction Mapping hypothesis Innate approximate representation of number (ANS) Symbols

More information

Dyslexia/dyslexic, 3, 9, 24, 97, 187, 189, 206, 217, , , 367, , , 397,

Dyslexia/dyslexic, 3, 9, 24, 97, 187, 189, 206, 217, , , 367, , , 397, Adoption studies, 274 275 Alliteration skill, 113, 115, 117 118, 122 123, 128, 136, 138 Alphabetic writing system, 5, 40, 127, 136, 410, 415 Alphabets (types of ) artificial transparent alphabet, 5 German

More information

Which verb classes and why? Research questions: Semantic Basis Hypothesis (SBH) What verb classes? Why the truth of the SBH matters

Which verb classes and why? Research questions: Semantic Basis Hypothesis (SBH) What verb classes? Why the truth of the SBH matters Which verb classes and why? ean-pierre Koenig, Gail Mauner, Anthony Davis, and reton ienvenue University at uffalo and Streamsage, Inc. Research questions: Participant roles play a role in the syntactic

More information

Rhythm-typology revisited.

Rhythm-typology revisited. DFG Project BA 737/1: "Cross-language and individual differences in the production and perception of syllabic prominence. Rhythm-typology revisited." Rhythm-typology revisited. B. Andreeva & W. Barry Jacques

More information

OFFICE SUPPORT SPECIALIST Technical Diploma

OFFICE SUPPORT SPECIALIST Technical Diploma OFFICE SUPPORT SPECIALIST Technical Diploma Program Code: 31-106-8 our graduates INDEMAND 2017/2018 mstc.edu administrative professional career pathway OFFICE SUPPORT SPECIALIST CUSTOMER RELATIONSHIP PROFESSIONAL

More information

Algebra 1, Quarter 3, Unit 3.1. Line of Best Fit. Overview

Algebra 1, Quarter 3, Unit 3.1. Line of Best Fit. Overview Algebra 1, Quarter 3, Unit 3.1 Line of Best Fit Overview Number of instructional days 6 (1 day assessment) (1 day = 45 minutes) Content to be learned Analyze scatter plots and construct the line of best

More information

Research Design & Analysis Made Easy! Brainstorming Worksheet

Research Design & Analysis Made Easy! Brainstorming Worksheet Brainstorming Worksheet 1) Choose a Topic a) What are you passionate about? b) What are your library s strengths? c) What are your library s weaknesses? d) What is a hot topic in the field right now that

More information

VOL. 3, NO. 5, May 2012 ISSN Journal of Emerging Trends in Computing and Information Sciences CIS Journal. All rights reserved.

VOL. 3, NO. 5, May 2012 ISSN Journal of Emerging Trends in Computing and Information Sciences CIS Journal. All rights reserved. Exploratory Study on Factors that Impact / Influence Success and failure of Students in the Foundation Computer Studies Course at the National University of Samoa 1 2 Elisapeta Mauai, Edna Temese 1 Computing

More information

learning collegiate assessment]

learning collegiate assessment] [ collegiate learning assessment] INSTITUTIONAL REPORT 2005 2006 Kalamazoo College council for aid to education 215 lexington avenue floor 21 new york new york 10016-6023 p 212.217.0700 f 212.661.9766

More information

Introduction to Ensemble Learning Featuring Successes in the Netflix Prize Competition

Introduction to Ensemble Learning Featuring Successes in the Netflix Prize Competition Introduction to Ensemble Learning Featuring Successes in the Netflix Prize Competition Todd Holloway Two Lecture Series for B551 November 20 & 27, 2007 Indiana University Outline Introduction Bias and

More information

RETURNING TEACHER REQUIRED TRAINING MODULE YE TRANSCRIPT

RETURNING TEACHER REQUIRED TRAINING MODULE YE TRANSCRIPT RETURNING TEACHER REQUIRED TRAINING MODULE YE Slide 1. The Dynamic Learning Maps Alternate Assessments are designed to measure what students with significant cognitive disabilities know and can do in relation

More information

Running head: DELAY AND PROSPECTIVE MEMORY 1

Running head: DELAY AND PROSPECTIVE MEMORY 1 Running head: DELAY AND PROSPECTIVE MEMORY 1 In Press at Memory & Cognition Effects of Delay of Prospective Memory Cues in an Ongoing Task on Prospective Memory Task Performance Dawn M. McBride, Jaclyn

More information

Revisiting the role of prosody in early language acquisition. Megha Sundara UCLA Phonetics Lab

Revisiting the role of prosody in early language acquisition. Megha Sundara UCLA Phonetics Lab Revisiting the role of prosody in early language acquisition Megha Sundara UCLA Phonetics Lab Outline Part I: Intonation has a role in language discrimination Part II: Do English-learning infants have

More information

Radius STEM Readiness TM

Radius STEM Readiness TM Curriculum Guide Radius STEM Readiness TM While today s teens are surrounded by technology, we face a stark and imminent shortage of graduates pursuing careers in Science, Technology, Engineering, and

More information

Interdisciplinary Journal of Problem-Based Learning

Interdisciplinary Journal of Problem-Based Learning Interdisciplinary Journal of Problem-Based Learning Volume 6 Issue 1 Article 9 Published online: 3-27-2012 Relationships between Language Background, Secondary School Scores, Tutorial Group Processes,

More information

SOFTWARE EVALUATION TOOL

SOFTWARE EVALUATION TOOL SOFTWARE EVALUATION TOOL Kyle Higgins Randall Boone University of Nevada Las Vegas rboone@unlv.nevada.edu Higgins@unlv.nevada.edu N.B. This form has not been fully validated and is still in development.

More information

Lecture 2: Quantifiers and Approximation

Lecture 2: Quantifiers and Approximation Lecture 2: Quantifiers and Approximation Case study: Most vs More than half Jakub Szymanik Outline Number Sense Approximate Number Sense Approximating most Superlative Meaning of most What About Counting?

More information

OVERVIEW OF CURRICULUM-BASED MEASUREMENT AS A GENERAL OUTCOME MEASURE

OVERVIEW OF CURRICULUM-BASED MEASUREMENT AS A GENERAL OUTCOME MEASURE OVERVIEW OF CURRICULUM-BASED MEASUREMENT AS A GENERAL OUTCOME MEASURE Mark R. Shinn, Ph.D. Michelle M. Shinn, Ph.D. Formative Evaluation to Inform Teaching Summative Assessment: Culmination measure. Mastery

More information

How to Judge the Quality of an Objective Classroom Test

How to Judge the Quality of an Objective Classroom Test How to Judge the Quality of an Objective Classroom Test Technical Bulletin #6 Evaluation and Examination Service The University of Iowa (319) 335-0356 HOW TO JUDGE THE QUALITY OF AN OBJECTIVE CLASSROOM

More information

2 Any information on the upcoming science test?

2 Any information on the upcoming science test? Illinois State Board of Education (ISBE) Student Information System (SIS) Spring SIS Assessment Update Webinar (Webinar Date: 02/18/2016) # Question Answer 1 My district has a lot of student mobility and

More information

Cognitive bases of reading and writing in a second/foreign language. DIALUKI (www.jyu.fi/dialuki)

Cognitive bases of reading and writing in a second/foreign language. DIALUKI (www.jyu.fi/dialuki) Cognitive bases of reading and writing in a second/foreign language DIALUKI (www.jyu.fi/dialuki) Lea Nieminen, CALS, University of Jyväskylä, Finland Riikka Ullakonoja, CALS, University of Jyväskylä, Finland

More information

CS Machine Learning

CS Machine Learning CS 478 - Machine Learning Projects Data Representation Basic testing and evaluation schemes CS 478 Data and Testing 1 Programming Issues l Program in any platform you want l Realize that you will be doing

More information

Course Law Enforcement II. Unit I Careers in Law Enforcement

Course Law Enforcement II. Unit I Careers in Law Enforcement Course Law Enforcement II Unit I Careers in Law Enforcement Essential Question How does communication affect the role of the public safety professional? TEKS 130.294(c) (1)(A)(B)(C) Prior Student Learning

More information

TIMSS ADVANCED 2015 USER GUIDE FOR THE INTERNATIONAL DATABASE. Pierre Foy

TIMSS ADVANCED 2015 USER GUIDE FOR THE INTERNATIONAL DATABASE. Pierre Foy TIMSS ADVANCED 2015 USER GUIDE FOR THE INTERNATIONAL DATABASE Pierre Foy TIMSS Advanced 2015 orks User Guide for the International Database Pierre Foy Contributors: Victoria A.S. Centurino, Kerry E. Cotter,

More information

Conceptual and Procedural Knowledge of a Mathematics Problem: Their Measurement and Their Causal Interrelations

Conceptual and Procedural Knowledge of a Mathematics Problem: Their Measurement and Their Causal Interrelations Conceptual and Procedural Knowledge of a Mathematics Problem: Their Measurement and Their Causal Interrelations Michael Schneider (mschneider@mpib-berlin.mpg.de) Elsbeth Stern (stern@mpib-berlin.mpg.de)

More information

Relationships Between Motivation And Student Performance In A Technology-Rich Classroom Environment

Relationships Between Motivation And Student Performance In A Technology-Rich Classroom Environment Relationships Between Motivation And Student Performance In A Technology-Rich Classroom Environment John Tapper & Sara Dalton Arden Brookstein, Derek Beaton, Stephen Hegedus jtapper@donahue.umassp.edu,

More information

EVERYTHING DiSC WORKPLACE LEADER S GUIDE

EVERYTHING DiSC WORKPLACE LEADER S GUIDE EVERYTHING DiSC WORKPLACE LEADER S GUIDE Module 1 Discovering Your DiSC Style Module 2 Understanding Other Styles Module 3 Building More Effective Relationships MODULE OVERVIEW Length: 90 minutes Activities:

More information

Speech Recognition at ICSI: Broadcast News and beyond

Speech Recognition at ICSI: Broadcast News and beyond Speech Recognition at ICSI: Broadcast News and beyond Dan Ellis International Computer Science Institute, Berkeley CA Outline 1 2 3 The DARPA Broadcast News task Aspects of ICSI

More information

ROA Technical Report. Jaap Dronkers ROA-TR-2014/1. Research Centre for Education and the Labour Market ROA

ROA Technical Report. Jaap Dronkers ROA-TR-2014/1. Research Centre for Education and the Labour Market ROA Research Centre for Education and the Labour Market ROA Parental background, early scholastic ability, the allocation into secondary tracks and language skills at the age of 15 years in a highly differentiated

More information

Custom Program Title. Leader s Guide. Understanding Other Styles. Discovering Your DiSC Style. Building More Effective Relationships

Custom Program Title. Leader s Guide. Understanding Other Styles. Discovering Your DiSC Style. Building More Effective Relationships Custom Program Title Leader s Guide Module 1 Discovering Your DiSC Style Module 2 Understanding Other Styles Module 3 Building More Effective Relationships by Inscape Publishing MODULE OVERVIEW Length:

More information

How to make an A in Physics 101/102. Submitted by students who earned an A in PHYS 101 and PHYS 102.

How to make an A in Physics 101/102. Submitted by students who earned an A in PHYS 101 and PHYS 102. How to make an A in Physics 101/102. Submitted by students who earned an A in PHYS 101 and PHYS 102. PHYS 102 (Spring 2015) Don t just study the material the day before the test know the material well

More information

Exploration. CS : Deep Reinforcement Learning Sergey Levine

Exploration. CS : Deep Reinforcement Learning Sergey Levine Exploration CS 294-112: Deep Reinforcement Learning Sergey Levine Class Notes 1. Homework 4 due on Wednesday 2. Project proposal feedback sent Today s Lecture 1. What is exploration? Why is it a problem?

More information

Empowering Students Learning Achievement Through Project-Based Learning As Perceived By Electrical Instructors And Students

Empowering Students Learning Achievement Through Project-Based Learning As Perceived By Electrical Instructors And Students Edith Cowan University Research Online EDU-COM International Conference Conferences, Symposia and Campus Events 2006 Empowering Students Learning Achievement Through Project-Based Learning As Perceived

More information

Student Morningness-Eveningness Type and Performance: Does Class Timing Matter?

Student Morningness-Eveningness Type and Performance: Does Class Timing Matter? Student Morningness-Eveningness Type and Performance: Does Class Timing Matter? Abstract Circadian rhythms have often been linked to people s performance outcomes, although this link has not been examined

More information

Understanding and Interpreting the NRC s Data-Based Assessment of Research-Doctorate Programs in the United States (2010)

Understanding and Interpreting the NRC s Data-Based Assessment of Research-Doctorate Programs in the United States (2010) Understanding and Interpreting the NRC s Data-Based Assessment of Research-Doctorate Programs in the United States (2010) Jaxk Reeves, SCC Director Kim Love-Myers, SCC Associate Director Presented at UGA

More information

Monitoring Metacognitive abilities in children: A comparison of children between the ages of 5 to 7 years and 8 to 11 years

Monitoring Metacognitive abilities in children: A comparison of children between the ages of 5 to 7 years and 8 to 11 years Monitoring Metacognitive abilities in children: A comparison of children between the ages of 5 to 7 years and 8 to 11 years Abstract Takang K. Tabe Department of Educational Psychology, University of Buea

More information

Ryerson University Sociology SOC 483: Advanced Research and Statistics

Ryerson University Sociology SOC 483: Advanced Research and Statistics Ryerson University Sociology SOC 483: Advanced Research and Statistics Prerequisites: SOC 481 Instructor: Paul S. Moore E-mail: psmoore@ryerson.ca Office: Sociology Department Jorgenson JOR 306 Phone:

More information

Game-based formative assessment: Newton s Playground. Valerie Shute, Matthew Ventura, & Yoon Jeon Kim (Florida State University), NCME, April 30, 2013

Game-based formative assessment: Newton s Playground. Valerie Shute, Matthew Ventura, & Yoon Jeon Kim (Florida State University), NCME, April 30, 2013 Game-based formative assessment: Newton s Playground Valerie Shute, Matthew Ventura, & Yoon Jeon Kim (Florida State University), NCME, April 30, 2013 Fun & Games Assessment Needs Game-based stealth assessment

More information

Listening to your members: The member satisfaction survey. Presenter: Mary Beth Watt. Outline

Listening to your members: The member satisfaction survey. Presenter: Mary Beth Watt. Outline Listening to your members: The satisfaction survey Listening to your members: The member satisfaction survey Presenter: Mary Beth Watt 1 Outline Introductions Members as customers Member satisfaction survey

More information

Analysis of Enzyme Kinetic Data

Analysis of Enzyme Kinetic Data Analysis of Enzyme Kinetic Data To Marilú Analysis of Enzyme Kinetic Data ATHEL CORNISH-BOWDEN Directeur de Recherche Émérite, Centre National de la Recherche Scientifique, Marseilles OXFORD UNIVERSITY

More information

GDP Falls as MBA Rises?

GDP Falls as MBA Rises? Applied Mathematics, 2013, 4, 1455-1459 http://dx.doi.org/10.4236/am.2013.410196 Published Online October 2013 (http://www.scirp.org/journal/am) GDP Falls as MBA Rises? T. N. Cummins EconomicGPS, Aurora,

More information

Linking the Ohio State Assessments to NWEA MAP Growth Tests *

Linking the Ohio State Assessments to NWEA MAP Growth Tests * Linking the Ohio State Assessments to NWEA MAP Growth Tests * *As of June 2017 Measures of Academic Progress (MAP ) is known as MAP Growth. August 2016 Introduction Northwest Evaluation Association (NWEA

More information

How Does Physical Space Influence the Novices' and Experts' Algebraic Reasoning?

How Does Physical Space Influence the Novices' and Experts' Algebraic Reasoning? Journal of European Psychology Students, 2013, 4, 37-46 How Does Physical Space Influence the Novices' and Experts' Algebraic Reasoning? Mihaela Taranu Babes-Bolyai University, Romania Received: 30.09.2011

More information

Evidence for Reliability, Validity and Learning Effectiveness

Evidence for Reliability, Validity and Learning Effectiveness PEARSON EDUCATION Evidence for Reliability, Validity and Learning Effectiveness Introduction Pearson Knowledge Technologies has conducted a large number and wide variety of reliability and validity studies

More information

Rachel E. Baker, Ann R. Bradlow. Northwestern University, Evanston, IL, USA

Rachel E. Baker, Ann R. Bradlow. Northwestern University, Evanston, IL, USA LANGUAGE AND SPEECH, 2009, 52 (4), 391 413 391 Variability in Word Duration as a Function of Probability, Speech Style, and Prosody Rachel E. Baker, Ann R. Bradlow Northwestern University, Evanston, IL,

More information

Source-monitoring judgments about anagrams and their solutions: Evidence for the role of cognitive operations information in memory

Source-monitoring judgments about anagrams and their solutions: Evidence for the role of cognitive operations information in memory Memory & Cognition 2007, 35 (2), 211-221 Source-monitoring judgments about anagrams and their solutions: Evidence for the role of cognitive operations information in memory MARY ANN FOLEY AND HUGH J. FOLEY

More information

The Perception of Nasalized Vowels in American English: An Investigation of On-line Use of Vowel Nasalization in Lexical Access

The Perception of Nasalized Vowels in American English: An Investigation of On-line Use of Vowel Nasalization in Lexical Access The Perception of Nasalized Vowels in American English: An Investigation of On-line Use of Vowel Nasalization in Lexical Access Joyce McDonough 1, Heike Lenhert-LeHouiller 1, Neil Bardhan 2 1 Linguistics

More information

Sheila M. Smith is Assistant Professor, Department of Business Information Technology, College of Business, Ball State University, Muncie, Indiana.

Sheila M. Smith is Assistant Professor, Department of Business Information Technology, College of Business, Ball State University, Muncie, Indiana. Using the Social Cognitive Model to Explain Vocational Interest in Information Technology Sheila M. Smith This study extended the social cognitive career theory model of vocational interest (Lent, Brown,

More information

Generating Test Cases From Use Cases

Generating Test Cases From Use Cases 1 of 13 1/10/2007 10:41 AM Generating Test Cases From Use Cases by Jim Heumann Requirements Management Evangelist Rational Software pdf (155 K) In many organizations, software testing accounts for 30 to

More information

Stacks Teacher notes. Activity description. Suitability. Time. AMP resources. Equipment. Key mathematical language. Key processes

Stacks Teacher notes. Activity description. Suitability. Time. AMP resources. Equipment. Key mathematical language. Key processes Stacks Teacher notes Activity description (Interactive not shown on this sheet.) Pupils start by exploring the patterns generated by moving counters between two stacks according to a fixed rule, doubling

More information

Evaluation of Teach For America:

Evaluation of Teach For America: EA15-536-2 Evaluation of Teach For America: 2014-2015 Department of Evaluation and Assessment Mike Miles Superintendent of Schools This page is intentionally left blank. ii Evaluation of Teach For America:

More information

arxiv: v1 [cs.cl] 2 Apr 2017

arxiv: v1 [cs.cl] 2 Apr 2017 Word-Alignment-Based Segment-Level Machine Translation Evaluation using Word Embeddings Junki Matsuo and Mamoru Komachi Graduate School of System Design, Tokyo Metropolitan University, Japan matsuo-junki@ed.tmu.ac.jp,

More information

MTH 141 Calculus 1 Syllabus Spring 2017

MTH 141 Calculus 1 Syllabus Spring 2017 Instructor: Section/Meets Office Hrs: Textbook: Calculus: Single Variable, by Hughes-Hallet et al, 6th ed., Wiley. Also needed: access code to WileyPlus (included in new books) Calculator: Not required,

More information

Introduction to Questionnaire Design

Introduction to Questionnaire Design Introduction to Questionnaire Design Why this seminar is necessary! Bad questions are everywhere! Don t let them happen to you! Fall 2012 Seminar Series University of Illinois www.srl.uic.edu The first

More information

Contents. Foreword... 5

Contents. Foreword... 5 Contents Foreword... 5 Chapter 1: Addition Within 0-10 Introduction... 6 Two Groups and a Total... 10 Learn Symbols + and =... 13 Addition Practice... 15 Which is More?... 17 Missing Items... 19 Sums with

More information

Educational Leadership and Policy Studies Doctoral Programs (Ed.D. and Ph.D.)

Educational Leadership and Policy Studies Doctoral Programs (Ed.D. and Ph.D.) Contact: Susan Korach susan.korach@du.edu Morgridge Office of Admissions mce@du.edu http://morgridge.du.edu/ Educational Leadership and Policy Studies Doctoral Programs (Ed.D. and Ph.D.) Doctoral (Ed.D.

More information

ACTL5103 Stochastic Modelling For Actuaries. Course Outline Semester 2, 2014

ACTL5103 Stochastic Modelling For Actuaries. Course Outline Semester 2, 2014 UNSW Australia Business School School of Risk and Actuarial Studies ACTL5103 Stochastic Modelling For Actuaries Course Outline Semester 2, 2014 Part A: Course-Specific Information Please consult Part B

More information

West s Paralegal Today The Legal Team at Work Third Edition

West s Paralegal Today The Legal Team at Work Third Edition Study Guide to accompany West s Paralegal Today The Legal Team at Work Third Edition Roger LeRoy Miller Institute for University Studies Mary Meinzinger Urisko Madonna University Prepared by Bradene L.

More information

CLASSIFICATION OF PROGRAM Critical Elements Analysis 1. High Priority Items Phonemic Awareness Instruction

CLASSIFICATION OF PROGRAM Critical Elements Analysis 1. High Priority Items Phonemic Awareness Instruction CLASSIFICATION OF PROGRAM Critical Elements Analysis 1 Program Name: Macmillan/McGraw Hill Reading 2003 Date of Publication: 2003 Publisher: Macmillan/McGraw Hill Reviewer Code: 1. X The program meets

More information

Copyright Corwin 2015

Copyright Corwin 2015 2 Defining Essential Learnings How do I find clarity in a sea of standards? For students truly to be able to take responsibility for their learning, both teacher and students need to be very clear about

More information

Quantitative analysis with statistics (and ponies) (Some slides, pony-based examples from Blase Ur)

Quantitative analysis with statistics (and ponies) (Some slides, pony-based examples from Blase Ur) Quantitative analysis with statistics (and ponies) (Some slides, pony-based examples from Blase Ur) 1 Interviews, diary studies Start stats Thursday: Ethics/IRB Tuesday: More stats New homework is available

More information

Hierarchical Linear Modeling with Maximum Likelihood, Restricted Maximum Likelihood, and Fully Bayesian Estimation

Hierarchical Linear Modeling with Maximum Likelihood, Restricted Maximum Likelihood, and Fully Bayesian Estimation A peer-reviewed electronic journal. Copyright is retained by the first or sole author, who grants right of first publication to Practical Assessment, Research & Evaluation. Permission is granted to distribute

More information

Active Ingredients of Instructional Coaching Results from a qualitative strand embedded in a randomized control trial

Active Ingredients of Instructional Coaching Results from a qualitative strand embedded in a randomized control trial Active Ingredients of Instructional Coaching Results from a qualitative strand embedded in a randomized control trial International Congress of Qualitative Inquiry May 2015, Champaign, IL Drew White, Michelle

More information

THE USE OF TINTED LENSES AND COLORED OVERLAYS FOR THE TREATMENT OF DYSLEXIA AND OTHER RELATED READING AND LEARNING DISORDERS

THE USE OF TINTED LENSES AND COLORED OVERLAYS FOR THE TREATMENT OF DYSLEXIA AND OTHER RELATED READING AND LEARNING DISORDERS FC-B204-040 THE USE OF TINTED LENSES AND COLORED OVERLAYS FOR THE TREATMENT OF DYSLEXIA AND OTHER RELATED READING AND LEARNING DISORDERS Over the past two decades the use of tinted lenses and colored overlays

More information

Towards Developing a Quantitative Literacy/ Reasoning Assessment Instrument

Towards Developing a Quantitative Literacy/ Reasoning Assessment Instrument Numeracy Advancing Education in Quantitative Literacy Volume 7 Issue 2 Article 4 2014 Towards Developing a Quantitative Literacy/ Reasoning Assessment Instrument Eric C. Gaze Bowdoin College, egaze@bowdoin.edu

More information

Travis Park, Assoc Prof, Cornell University Donna Pearson, Assoc Prof, University of Louisville. NACTEI National Conference Portland, OR May 16, 2012

Travis Park, Assoc Prof, Cornell University Donna Pearson, Assoc Prof, University of Louisville. NACTEI National Conference Portland, OR May 16, 2012 Travis Park, Assoc Prof, Cornell University Donna Pearson, Assoc Prof, University of Louisville NACTEI National Conference Portland, OR May 16, 2012 NRCCTE Partners Four Main Ac5vi5es Research (Scientifically-based)!!

More information

On Human Computer Interaction, HCI. Dr. Saif al Zahir Electrical and Computer Engineering Department UBC

On Human Computer Interaction, HCI. Dr. Saif al Zahir Electrical and Computer Engineering Department UBC On Human Computer Interaction, HCI Dr. Saif al Zahir Electrical and Computer Engineering Department UBC Human Computer Interaction HCI HCI is the study of people, computer technology, and the ways these

More information

Alpha provides an overall measure of the internal reliability of the test. The Coefficient Alphas for the STEP are:

Alpha provides an overall measure of the internal reliability of the test. The Coefficient Alphas for the STEP are: Every individual is unique. From the way we look to how we behave, speak, and act, we all do it differently. We also have our own unique methods of learning. Once those methods are identified, it can make

More information

An Evaluation of the Interactive-Activation Model Using Masked Partial-Word Priming. Jason R. Perry. University of Western Ontario. Stephen J.

An Evaluation of the Interactive-Activation Model Using Masked Partial-Word Priming. Jason R. Perry. University of Western Ontario. Stephen J. An Evaluation of the Interactive-Activation Model Using Masked Partial-Word Priming Jason R. Perry University of Western Ontario Stephen J. Lupker University of Western Ontario Colin J. Davis Royal Holloway

More information

Assessing speaking skills:. a workshop for teacher development. Ben Knight

Assessing speaking skills:. a workshop for teacher development. Ben Knight Assessing speaking skills:. a workshop for teacher development Ben Knight Speaking skills are often considered the most important part of an EFL course, and yet the difficulties in testing oral skills

More information

Justin Raisner December 2010 EdTech 503

Justin Raisner December 2010 EdTech 503 Justin Raisner December 2010 EdTech 503 INSTRUCTIONAL DESIGN PROJECT: ADOBE INDESIGN LAYOUT SKILLS For teaching basic indesign skills to student journalists who will edit the school newspaper. TABLE OF

More information

Independent Assurance, Accreditation, & Proficiency Sample Programs Jason Davis, PE

Independent Assurance, Accreditation, & Proficiency Sample Programs Jason Davis, PE Independent Assurance, Accreditation, & Proficiency Sample Programs Jason Davis, PE Field Quality Assurance Administrator, LA DOTD Materials Lab Louisiana Transportation Conference 2016 Words found in

More information

Driving Competitiveness. Delivering Growth and Sustainable Jobs. 29 May 2013 Dublin Castle, Ireland

Driving Competitiveness. Delivering Growth and Sustainable Jobs. 29 May 2013 Dublin Castle, Ireland Driving Competitiveness Delivering Growth and Sustainable Jobs 29 May 2013 Dublin Castle, Ireland Driving Competitiveness at SteriPack Cormac Kinahan BRIEF INTRODUCTION TO STERIPACK Established in 1994,

More information

Modern Project Management. Brendan Bartels

Modern Project Management. Brendan Bartels Modern Project Management Brendan Bartels You Need To Manage Tasks Technical Conversation File Changes Project Documentation You Need To Manage Tasks Technical Conversation File Changes Project Documentation

More information

Office Hours: Mon & Fri 10:00-12:00. Course Description

Office Hours: Mon & Fri 10:00-12:00. Course Description 1 State University of New York at Buffalo INTRODUCTION TO STATISTICS PSC 408 4 credits (3 credits lecture, 1 credit lab) Fall 2016 M/W/F 1:00-1:50 O Brian 112 Lecture Dr. Michelle Benson mbenson2@buffalo.edu

More information

Faculty Schedule Preference Survey Results

Faculty Schedule Preference Survey Results Faculty Schedule Preference Survey Results Surveys were distributed to all 199 faculty mailboxes with information about moving to a 16 week calendar followed by asking their calendar schedule. Objective

More information

Investment in e- journals, use and research outcomes

Investment in e- journals, use and research outcomes Investment in e- journals, use and research outcomes David Nicholas CIBER Research Limited, UK Ian Rowlands University of Leicester, UK Library Return on Investment seminar Universite de Lyon, 20-21 February

More information

A Bootstrapping Model of Frequency and Context Effects in Word Learning

A Bootstrapping Model of Frequency and Context Effects in Word Learning Cognitive Science 41 (2017) 590 622 Copyright 2016 Cognitive Science Society, Inc. All rights reserved. ISSN: 0364-0213 print / 1551-6709 online DOI: 10.1111/cogs.12353 A Bootstrapping Model of Frequency

More information

Full text of O L O W Science As Inquiry conference. Science as Inquiry

Full text of O L O W Science As Inquiry conference. Science as Inquiry Page 1 of 5 Full text of O L O W Science As Inquiry conference Reception Meeting Room Resources Oceanside Unifying Concepts and Processes Science As Inquiry Physical Science Life Science Earth & Space

More information

SSIS SEL Edition Overview Fall 2017

SSIS SEL Edition Overview Fall 2017 Image by Photographer s Name (Credit in black type) or Image by Photographer s Name (Credit in white type) Use of the new SSIS-SEL Edition for Screening, Assessing, Intervention Planning, and Progress

More information

EDCI 699 Statistics: Content, Process, Application COURSE SYLLABUS: SPRING 2016

EDCI 699 Statistics: Content, Process, Application COURSE SYLLABUS: SPRING 2016 EDCI 699 Statistics: Content, Process, Application COURSE SYLLABUS: SPRING 2016 Instructor: Dr. Katy Denson, Ph.D. Office Hours: Because I live in Albuquerque, New Mexico, I won t have office hours. But

More information

The lab is designed to remind you how to work with scientific data (including dealing with uncertainty) and to review experimental design.

The lab is designed to remind you how to work with scientific data (including dealing with uncertainty) and to review experimental design. Name: Partner(s): Lab #1 The Scientific Method Due 6/25 Objective The lab is designed to remind you how to work with scientific data (including dealing with uncertainty) and to review experimental design.

More information

THE PERCEPTION AND PRODUCTION OF STRESS AND INTONATION BY CHILDREN WITH COCHLEAR IMPLANTS

THE PERCEPTION AND PRODUCTION OF STRESS AND INTONATION BY CHILDREN WITH COCHLEAR IMPLANTS THE PERCEPTION AND PRODUCTION OF STRESS AND INTONATION BY CHILDREN WITH COCHLEAR IMPLANTS ROSEMARY O HALPIN University College London Department of Phonetics & Linguistics A dissertation submitted to the

More information

How to analyze visual narratives: A tutorial in Visual Narrative Grammar

How to analyze visual narratives: A tutorial in Visual Narrative Grammar How to analyze visual narratives: A tutorial in Visual Narrative Grammar Neil Cohn 2015 neilcohn@visuallanguagelab.com www.visuallanguagelab.com Abstract Recent work has argued that narrative sequential

More information

Cued Recall From Image and Sentence Memory: A Shift From Episodic to Identical Elements Representation

Cued Recall From Image and Sentence Memory: A Shift From Episodic to Identical Elements Representation Journal of Experimental Psychology: Learning, Memory, and Cognition 2006, Vol. 32, No. 4, 734 748 Copyright 2006 by the American Psychological Association 0278-7393/06/$12.00 DOI: 10.1037/0278-7393.32.4.734

More information

content First Introductory book to cover CAPM First to differentiate expected and required returns First to discuss the intrinsic value of stocks

content First Introductory book to cover CAPM First to differentiate expected and required returns First to discuss the intrinsic value of stocks content First Introductory book to cover CAPM First to differentiate expected and required returns First to discuss the intrinsic value of stocks presentation First timelines to explain TVM First financial

More information

Learning From the Past with Experiment Databases

Learning From the Past with Experiment Databases Learning From the Past with Experiment Databases Joaquin Vanschoren 1, Bernhard Pfahringer 2, and Geoff Holmes 2 1 Computer Science Dept., K.U.Leuven, Leuven, Belgium 2 Computer Science Dept., University

More information

Measures of the Location of the Data

Measures of the Location of the Data OpenStax-CNX module m46930 1 Measures of the Location of the Data OpenStax College This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 The common measures

More information