Mixed Linear Models. Case studies on speech rate modulations in spontaneous speech. LSA Summer Institute 2009, UC Berkeley

Size: px
Start display at page:

Download "Mixed Linear Models. Case studies on speech rate modulations in spontaneous speech. LSA Summer Institute 2009, UC Berkeley"

Transcription

1 Mixed Linear Models Case studies on speech rate modulations in spontaneous speech LSA Summer Institute 2009, UC Berkeley Florian Jaeger University of Rochester

2 Managing speech rate How do speakers determine how fast to talk at a given moment? Beyond speech rate difference between speakers, speech rate could be used strategically to slow down when planning/retrieving difficult upcoming material in order to avoid disfluency to slow down if the current word is unexpected to provide more signal to the interlocutors Speech rate may also be affected by segmental or supra segmental interference. Mixed Linear Models An example (T. Florian Jaeger) [2]

3 Corpus & Data Switchboard corpus 357 speakers 650 dialogues 800k words 100k utterances Automatically time aligned transcription (40k words hand corrected) Today: High frequency function word: the, a, they, it, etc. Mixed Linear Models An example (T. Florian Jaeger) [3]

4 Step size = 0.01 seconds = 10 msecs Mixed Linear Models An example (T. Florian Jaeger) [4]

5 Mixed Linear Models An example (T. Florian Jaeger) [5]

6 Mixed Linear Models An example (T. Florian Jaeger) [6]

7 Speakers vary Mixed Linear Models An example (T. Florian Jaeger) [7]

8 Instances within speakers vary Mixed Linear Models An example (T. Florian Jaeger) [8]

9 Preparing the data Mixed Linear Models An example (T. Florian Jaeger) [9]

10 Subset ing (1): Missing information Exclude cases with missing variable information: d <- subset(d, SpeechRate > 0 &!is.na(id_duration) & ID_duration > 0 & WORDpreceding!= "" & WORDfollowing!= "" ) Mixed Linear Models An example (T. Florian Jaeger) [10]

11 Subset ing (2): Stratification Only words in the center of prosodic phrases of sufficiently long clauses: d <- subset(d, TOPlength > 4 & ID_spWindowSyllables > 7 & ID_spWindowSyllables < 40 & ID_spWindowSyllablePosition > 3 & ID_spWindowSyllables - ID_spWindowSyllablePosition > 3 ) Exclude disfluent words: d <- subset(d, Dform!= 1 ) Mixed Linear Models An example (T. Florian Jaeger) [11]

12 Subset ing (3): Exclude outliers based on distributional information: d<- subset(d, abs(scale(lspeechrate)) < 2.5 & abs(scale(id_duration)) < 2.5 ) Mixed Linear Models An example (T. Florian Jaeger) [12]

13 Data 9,460 7,685 5, 876 5,443 3,605 2,290 1,930 1,730 the a I that (determiner) it they for we Syntactic annotation available Mixed Linear Models An example (T. Florian Jaeger) [13]

14 A simple model > lmer(log(id_duration) ~ lspeechrate + (1 Speaker_ID), the) Linear mixed model fit by REML Formula: log(id_duration) ~ lspeechrate + (1 Speaker_ID) Data: the AIC BIC loglik deviance REMLdev Random effects: Groups Name Variance Std.Dev. Speaker_ID (Intercept) Residual Number of obs: 9460, groups: Speaker_ID, 357 Interpretation? Fixed effects: Estimate Std. Error t value (Intercept) lspeechrate Mixed Linear Models An example (T. Florian Jaeger) [14]

15 Interpretation of random effects Mixed Linear Models An example (T. Florian Jaeger) [15]

16 MCMC sampling $fixed Estimate MCMCmean HPD95lower HPD95upper pmcmc Pr(> t ) (Intercept) lspeechrate $random Groups Name Std.Dev. MCMCmedian MCMCmean HPD95lower HPD95uppe 1 Speaker_ID (Intercept) Residual Mixed Linear Models An example (T. Florian Jaeger) [16]

17 Preparing the data Mixed Linear Models An example (T. Florian Jaeger) [17]

18 Was log transform of speech rate justified? Linear mixed model fit by REML Formula: log(id_duration) ~ SpeechRate + (1 Speaker_ID) Data: the AIC BIC loglik deviance REMLdev Random effects: Groups Name Variance Std.Dev. Speaker_ID (Intercept) Residual Number of obs: 9460, groups: Speaker_ID, 357 Fixed effects: Estimate Std. Error t value (Intercept) SpeechRate cf for log transformed speech rate Mixed Linear Models An example (T. Florian Jaeger) [18]

19 Other ways of testing the log log linearity assumption l.rcs <- lmer(log(id_duration) ~ rcs(speechrate, 4) + (1 Speaker_ID), the) plotlmer.fnc(l.rcs) Non linearity goes away for log transformed speech rate Mixed Linear Models An example (T. Florian Jaeger) [19]

20 Let s s add some more controls Formula: log(id_duration) ~ lspeechrate + Dpreceding + Dfollowing + (1 Speaker_ID) Data: the AIC BIC loglik deviance REMLdev Random effects: Groups Name Variance Std.Dev. Speaker_ID (Intercept) Residual Number of obs: 9460, groups: Speaker_ID, 357 Fixed effects: Estimate Std. Error t value (Intercept) lspeechrate Dpreceding Dfollowing cf for speech rate only model Pretty much unchanged cf for speech rate only model Mixed Linear Models An example (T. Florian Jaeger) [20]

21 Preparing the data Mixed Linear Models An example (T. Florian Jaeger) [21]

22 Collinearity? Linear mixed model fit by REML Formula: log(id_duration) ~ lspeechrate + Dpreceding + Dfollowing + (1 Speaker_ID) Correlation of Fixed Effects: (Intr) lspchr Dprcdn lspeechrate Dpreceding Dfollowing Mixed Linear Models An example (T. Florian Jaeger) [22]

23 MCMC $fixed Estimate MCMCmean HPD95lower HPD95upper pmcmc Pr(> t ) (Intercept) lspeechrate Dpreceding Dfollowing $random Groups Name Std.Dev. MCMCmedian MCMCmean HPD95lower HPD95upper 1 Speaker_ID (Intercept) Residual Mixed Linear Models An example (T. Florian Jaeger) [23]

24 And some social variables Formula: log(id_duration) ~ lspeechrate + Dpreceding + Dfollowing + SpeakerMale * lspeakerage + (1 Speaker_ID) Fixed effects: Estimate Std. Error t value (Intercept) lspeechrate Dpreceding Dfollowing SpeakerMale lspeakerage SpeakerMale:lSpeakerAge Mixed Linear Models An example (T. Florian Jaeger) [24]

25 Collinearity! Effects: (Intr) lspchr Dprcdn Dfllwn SpkrMl lspkra lspeechrate Dpreceding Dfollowing SpeakerMale lspeakerage SpkrMl:lSpA Mixed Linear Models An example (T. Florian Jaeger) [25]

26 Mixed Linear Models An example (T. Florian Jaeger) [26]

27 Mixed Linear Models An example (T. Florian Jaeger) [27]

28 Mixed Linear Models An example (T. Florian Jaeger) [28]

29 Mixed Linear Models An example (T. Florian Jaeger) [29]

30 Mixed Linear Models An example (T. Florian Jaeger) [30]

31 Mixed Linear Models An example (T. Florian Jaeger) [31]

32 Collinearity is gone (nice) Correlation of Fixed Effects: (Intr) lspchr Dprcdn Dfllwn cspkrm clspka lspeechrate Dpreceding Dfollowing cspeakermal clspeakerag cspkrml:csa Mixed Linear Models An example (T. Florian Jaeger) [32]

33 After centering tion) ~ lspeechrate + Dpreceding + Dfollowing + cspeakermale * clspeakerage + (1 Speaker_ID) Fixed effects: Estimate Std. Error t value (Intercept) lspeechrate Dpreceding Dfollowing cspeakermale clspeakerage cspeakermale:clspeakerage Here: no change in significance (social effects still insignificant) but now we can trust the results Mixed Linear Models An example (T. Florian Jaeger) [33]

34 Driven by the phonological complexity of surrounding coda/onsets? Addition of phonological complexity: χ 2 (2)=577.5, p< Removal of OCP effects: χ 2 (3)=117.1, p< Partial shadowed effect or collinearity? Fixed effects: Estimate Std. Error t value (Intercept) clspeechrate Dpreceding Dfollowing consetprecedingcodaocp consetprecedingonsetocp consetfollowingonsetocp ccodaclusterpreceding consetclusterfollowing cspeakermale clspeakerage cspeakermale:clspeakerage Mixed Linear Models An example (T. Florian Jaeger) [34]

35 Mild collinearity Correlation of Fixed Effects: (Intr) clspcr Dprcdn Dfllwn copcoc copooc cofooc ccdclp clspeechrat Dpreceding Dfollowing constprcocp constproocp constfloocp ccdclstrprc constclstrf Mixed Linear Models An example (T. Florian Jaeger) [35]

36 What to do if centering is not going to help? Mixed Linear Models An example (T. Florian Jaeger) [36]

37 the$ronsetfollowingonsetocp <- residuals(lm(consetfollowingonsetocp ~ consetclusterfollowing, the)) Correlation of Fixed Effects: (Intr) clspcr Dprcdn Dfllwn copcoc copooc rofooc ccdclp clspeechrat Dpreceding Dfollowing constprcocp constproocp ronstfloocp ccdclstrprc constclstrf Mixed Linear Models An example (T. Florian Jaeger) [37]

38 Does availability affect pronunciation? Two measures of availability: Frequency of next work (trigram) predictability of next work the$rlcndp_1forward <- residuals(lm(clcndp_1forward ~ clfqfollowing, the)) l.avail.r <- lmer(log(id_duration) ~ clspeechrate + Dpreceding + Dfollowing + consetprecedingcodaocp + consetprecedingonsetocp + consetfollowingonsetocp + consetprecedingcodaident + consetprecedingonsetident + consetfollowingonsetident + ccodaclusterpreceding + consetclusterfollowing + clfqfollowing + rlcndp_1forward + cspeakermale * clspeakerage + (1 Speaker_ID) + (1 WORDpreceding) + (1 WORDfollowing), the) Mixed Linear Models An example (T. Florian Jaeger) [38]

39 Addition of availability: χ 2 (2)=32.3, p< Estimate Std. Error t value (Intercept) clspeechrate Dpreceding Dfollowing consetprecedingcodaocp consetprecedingonsetocp consetfollowingonsetocp consetprecedingcodaident consetprecedingonsetident consetfollowingonsetident ccodaclusterpreceding consetclusterfollowing clfqfollowing rlcndp_1forward cspeakermale clspeakerage cspeakermale:clspeakerage Mixed Linear Models An example (T. Florian Jaeger) [39]

40 Does redundancy affect pronunciation? Mixed Linear Models An example (T. Florian Jaeger) [40]

Mixed models in R using the lme4 package Part 2: Longitudinal data, modeling interactions

Mixed models in R using the lme4 package Part 2: Longitudinal data, modeling interactions Mixed models in R using the lme4 package Part 2: Longitudinal data, modeling interactions Douglas Bates 2011-03-16 Contents 1 sleepstudy 1 2 Random slopes 3 3 Conditional means 6 4 Conclusions 9 5 Other

More information

Subject-specific observed profiles of change from baseline vs week trt=10000u

Subject-specific observed profiles of change from baseline vs week trt=10000u Mean of age 1 The MEANS Procedure Analysis Variable : age N Mean Std Dev Minimum Maximum ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ 109 55.5321101 12.1255537 26.0000000 83.0000000

More information

Chapter 27. Inferences for Regression. Remembering Regression. An Example: Body Fat and Waist Size. Remembering Regression (cont.)

Chapter 27. Inferences for Regression. Remembering Regression. An Example: Body Fat and Waist Size. Remembering Regression (cont.) Chapter 27 Inferences for Regression Copyright 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Slide 27-1 Copyright 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley An

More information

Bootstrap Methods in Regression Questions Have you had a chance to try any of this? Any of the review questions?

Bootstrap Methods in Regression Questions Have you had a chance to try any of this? Any of the review questions? ICPSR Blalock Lectures, 2003 Bootstrap Resampling Robert Stine Lecture 3 Bootstrap Methods in Regression Questions Have you had a chance to try any of this? Any of the review questions? Getting class notes

More information

More About Regression

More About Regression Regression Line for the Sample Chapter 14 More About Regression is spoken as y-hat, and it is also referred to either as predicted y or estimated y. b 0 is the intercept of the straight line. The intercept

More information

Statistical Consulting Topics. RCBD with a covariate

Statistical Consulting Topics. RCBD with a covariate Statistical Consulting Topics RCBD with a covariate Goal: to determine the optimal level of feed additive to maximize the average daily gain of steers. VARIABLES Y = Average Daily Gain of steers for 160

More information

Latin Square Design. Design of Experiments - Montgomery Section 4-2

Latin Square Design. Design of Experiments - Montgomery Section 4-2 Latin Square Design Design of Experiments - Montgomery Section 4-2 Latin Square Design Can be used when goal is to block on two nuisance factors Constructed so blocking factors orthogonal to treatment

More information

Problem Points Score USE YOUR TIME WISELY USE CLOSEST DF AVAILABLE IN TABLE SHOW YOUR WORK TO RECEIVE PARTIAL CREDIT

Problem Points Score USE YOUR TIME WISELY USE CLOSEST DF AVAILABLE IN TABLE SHOW YOUR WORK TO RECEIVE PARTIAL CREDIT Stat 514 EXAM I Stat 514 Name (6 pts) Problem Points Score 1 32 2 30 3 32 USE YOUR TIME WISELY USE CLOSEST DF AVAILABLE IN TABLE SHOW YOUR WORK TO RECEIVE PARTIAL CREDIT WRITE LEGIBLY. ANYTHING UNREADABLE

More information

DV: Liking Cartoon Comedy

DV: Liking Cartoon Comedy 1 Stepwise Multiple Regression Model Rikki Price Com 631/731 March 24, 2016 I. MODEL Block 1 Block 2 DV: Liking Cartoon Comedy 2 Block Stepwise Block 1 = Demographics: Item: Age (G2) Item: Political Philosophy

More information

GLM Example: One-Way Analysis of Covariance

GLM Example: One-Way Analysis of Covariance Understanding Design and Analysis of Research Experiments An animal scientist is interested in determining the effects of four different feed plans on hogs. Twenty four hogs of a breed were chosen and

More information

Relationships Between Quantitative Variables

Relationships Between Quantitative Variables Chapter 5 Relationships Between Quantitative Variables Three Tools we will use Scatterplot, a two-dimensional graph of data values Correlation, a statistic that measures the strength and direction of a

More information

Resampling Statistics. Conventional Statistics. Resampling Statistics

Resampling Statistics. Conventional Statistics. Resampling Statistics Resampling Statistics Introduction to Resampling Probability Modeling Resample add-in Bootstrapping values, vectors, matrices R boot package Conclusions Conventional Statistics Assumptions of conventional

More information

Relationships. Between Quantitative Variables. Chapter 5. Copyright 2006 Brooks/Cole, a division of Thomson Learning, Inc.

Relationships. Between Quantitative Variables. Chapter 5. Copyright 2006 Brooks/Cole, a division of Thomson Learning, Inc. Relationships Chapter 5 Between Quantitative Variables Copyright 2006 Brooks/Cole, a division of Thomson Learning, Inc. Three Tools we will use Scatterplot, a two-dimensional graph of data values Correlation,

More information

Linear mixed models and when implied assumptions not appropriate

Linear mixed models and when implied assumptions not appropriate Mixed Models Lecture Notes By Dr. Hanford page 94 Generalized Linear Mixed Models (GLMM) GLMMs are based on GLM, extended to include random effects, random coefficients and covariance patterns. GLMMs are

More information

Modelling Intervention Effects in Clustered Randomized Pretest/Posttest Studies. Ed Stanek

Modelling Intervention Effects in Clustered Randomized Pretest/Posttest Studies. Ed Stanek Modelling Intervention Effects in Clustered Randomized Pretest/Posttest Studies Introduction Ed Stanek We consider a study design similar to the design for the Well Women Project, and discuss analyses

More information

Replicated Latin Square and Crossover Designs

Replicated Latin Square and Crossover Designs Replicated Latin Square and Crossover Designs Replicated Latin Square Latin Square Design small df E, low power If 3 treatments 2 df error If 4 treatments 6 df error Can use replication to increase df

More information

I. Model. Q29a. I love the options at my fingertips today, watching videos on my phone, texting, and streaming films. Main Effect X1: Gender

I. Model. Q29a. I love the options at my fingertips today, watching videos on my phone, texting, and streaming films. Main Effect X1: Gender 1 Hopewell, Sonoyta & Walker, Krista COM 631/731 Multivariate Statistical Methods Dr. Kim Neuendorf Film & TV National Survey dataset (2014) by Jeffres & Neuendorf MANOVA Class Presentation I. Model INDEPENDENT

More information

Open Access Determinants and the Effect on Article Performance

Open Access Determinants and the Effect on Article Performance International Journal of Business and Economics Research 2017; 6(6): 145-152 http://www.sciencepublishinggroup.com/j/ijber doi: 10.11648/j.ijber.20170606.11 ISSN: 2328-7543 (Print); ISSN: 2328-756X (Online)

More information

Sociology 7704: Regression Models for Categorical Data Instructor: Natasha Sarkisian

Sociology 7704: Regression Models for Categorical Data Instructor: Natasha Sarkisian OLS Regression Assumptions Sociology 7704: Regression Models for Categorical Data Instructor: Natasha Sarkisian A1. All independent variables are quantitative or dichotomous, and the dependent variable

More information

TWO-FACTOR ANOVA Kim Neuendorf 4/9/18 COM 631/731 I. MODEL

TWO-FACTOR ANOVA Kim Neuendorf 4/9/18 COM 631/731 I. MODEL 1 TWO-FACTOR ANOVA Kim Neuendorf 4/9/18 COM 631/731 I. MODEL Using the Humor and Public Opinion Data, a two-factor ANOVA was run, using the full factorial model: MAIN EFFECT: Political Philosophy (3 groups)

More information

in the Howard County Public School System and Rocketship Education

in the Howard County Public School System and Rocketship Education Technical Appendix May 2016 DREAMBOX LEARNING ACHIEVEMENT GROWTH in the Howard County Public School System and Rocketship Education Abstract In this technical appendix, we present analyses of the relationship

More information

Regression Model for Politeness Estimation Trained on Examples

Regression Model for Politeness Estimation Trained on Examples Regression Model for Politeness Estimation Trained on Examples Mikhail Alexandrov 1, Natalia Ponomareva 2, Xavier Blanco 1 1 Universidad Autonoma de Barcelona, Spain 2 University of Wolverhampton, UK Email:

More information

Detecting Medicaid Data Anomalies Using Data Mining Techniques Shenjun Zhu, Qiling Shi, Aran Canes, AdvanceMed Corporation, Nashville, TN

Detecting Medicaid Data Anomalies Using Data Mining Techniques Shenjun Zhu, Qiling Shi, Aran Canes, AdvanceMed Corporation, Nashville, TN Paper SDA-04 Detecting Medicaid Data Anomalies Using Data Mining Techniques Shenjun Zhu, Qiling Shi, Aran Canes, AdvanceMed Corporation, Nashville, TN ABSTRACT The purpose of this study is to use statistical

More information

Sociology 704: Topics in Multivariate Statistics Instructor: Natasha Sarkisian

Sociology 704: Topics in Multivariate Statistics Instructor: Natasha Sarkisian Sociology 704: Topics in Multivariate Statistics Instructor: Natasha Sarkisian OLS Regression in Stata To run an OLS regression:. reg agekdbrn educ born sex mapres80 Source SS df MS Number of obs = 1091

More information

1. Model. Discriminant Analysis COM 631. Spring Devin Kelly. Dataset: Film and TV Usage National Survey 2015 (Jeffres & Neuendorf) Q23a. Q23b.

1. Model. Discriminant Analysis COM 631. Spring Devin Kelly. Dataset: Film and TV Usage National Survey 2015 (Jeffres & Neuendorf) Q23a. Q23b. 1 Discriminant Analysis COM 631 Spring 2016 Devin Kelly 1. Model Dataset: Film and TV Usage National Survey 2015 (Jeffres & Neuendorf) Q23a. Q23b. Q23c. DF1 Q23d. Q23e. Q23f. Q23g. Q23h. DF2 DF3 CultClass

More information

MANOVA/MANCOVA Paul and Kaila

MANOVA/MANCOVA Paul and Kaila I. Model MANOVA/MANCOVA Paul and Kaila From the Music and Film Experiment (Neuendorf et al.) Covariates (ONLY IN MANCOVA) X1 Music Condition Y1 E20 Contempt Y2 E21 Anticipation X2 Instrument Interaction

More information

Predicting the Importance of Current Papers

Predicting the Importance of Current Papers Predicting the Importance of Current Papers Kevin W. Boyack * and Richard Klavans ** kboyack@sandia.gov * Sandia National Laboratories, P.O. Box 5800, MS-0310, Albuquerque, NM 87185, USA rklavans@mapofscience.com

More information

A real time study of plosives in Glaswegian using an automatic measurement algorithm

A real time study of plosives in Glaswegian using an automatic measurement algorithm A real time study of plosives in Glaswegian using an automatic measurement algorithm Jane Stuart Smith, Tamara Rathcke, Morgan Sonderegger University of Glasgow; University of Kent, McGill University NWAV42,

More information

The Time Series Forecasting System Charles Hallahan, Economic Research Service/USDA, Washington, DC

The Time Series Forecasting System Charles Hallahan, Economic Research Service/USDA, Washington, DC INTRODUCTION The Time Series Forecasting System Charles Hallahan, Economic Research Service/USDA, Washington, DC The Time Series Forecasting System (TSFS) is a component of SAS/ETS that provides a menu-based

More information

Perceptual dimensions of short audio clips and corresponding timbre features

Perceptual dimensions of short audio clips and corresponding timbre features Perceptual dimensions of short audio clips and corresponding timbre features Jason Musil, Budr El-Nusairi, Daniel Müllensiefen Department of Psychology, Goldsmiths, University of London Question How do

More information

Detecting Attempts at Humor in Multiparty Meetings

Detecting Attempts at Humor in Multiparty Meetings Detecting Attempts at Humor in Multiparty Meetings Kornel Laskowski Carnegie Mellon University Pittsburgh PA, USA 14 September, 2008 K. Laskowski ICSC 2009, Berkeley CA, USA 1/26 Why bother with humor?

More information

Best Pat-Tricks on Model Diagnostics What are they? Why use them? What good do they do?

Best Pat-Tricks on Model Diagnostics What are they? Why use them? What good do they do? Best Pat-Tricks on Model Diagnostics What are they? Why use them? What good do they do? Before we get started feel free to download the presentation and file(s) being used for today s webinar. http://www.statease.com/webinar.html

More information

K ABC Mplus CFA Model. Syntax file (kabc-mplus.inp) Data file (kabc-mplus.dat)

K ABC Mplus CFA Model. Syntax file (kabc-mplus.inp) Data file (kabc-mplus.dat) K ABC Mplus CFA Model Syntax file (kabc-mplus.inp) title: principles and practice of sem (4th ed.), rex kline two-factor model of the kabc-i, figure 9.7, table 13.1 data: file is "kabc-mplus.dat"; type

More information

Repeated measures ANOVA

Repeated measures ANOVA Repeated measures ANOVA Pronoun interpretation in direct and indirect speech 07-05-2013 1 Franziska Köder Seminar in Methodology and Statistics, May 23, 2013 24-10-2012 2 Overview 1. Experimental design

More information

Algebra I Module 2 Lessons 1 19

Algebra I Module 2 Lessons 1 19 Eureka Math 2015 2016 Algebra I Module 2 Lessons 1 19 Eureka Math, Published by the non-profit Great Minds. Copyright 2015 Great Minds. No part of this work may be reproduced, distributed, modified, sold,

More information

K-Pop Idol Industry Minhyung Lee

K-Pop Idol Industry Minhyung Lee K-Pop Idol Industry 20100663 Minhyung Lee 1. K-Pop Idol History 2. Idol Industry Factor 3. Regression Analysis 4. Result & Interpretation K-Pop Idol History (1990s) Turning point of Korean Music history

More information

Modeling memory for melodies

Modeling memory for melodies Modeling memory for melodies Daniel Müllensiefen 1 and Christian Hennig 2 1 Musikwissenschaftliches Institut, Universität Hamburg, 20354 Hamburg, Germany 2 Department of Statistical Science, University

More information

Discriminant Analysis. DFs

Discriminant Analysis. DFs Discriminant Analysis Chichang Xiong Kelly Kinahan COM 631 March 27, 2013 I. Model Using the Humor and Public Opinion Data Set (Neuendorf & Skalski, 2010) IVs: C44 reverse coded C17 C22 C23 C27 reverse

More information

MANOVA COM 631/731 Spring 2017 M. DANIELS. From Jeffres & Neuendorf (2015) Film and TV Usage National Survey

MANOVA COM 631/731 Spring 2017 M. DANIELS. From Jeffres & Neuendorf (2015) Film and TV Usage National Survey 1 MANOVA COM 631/731 Spring 2017 M. DANIELS I. MODEL From Jeffres & Neuendorf (2015) Film and TV Usage National Survey INDEPENDENT VARIABLES DEPENDENT VARIABLES X1: GENDER Q23a. I often watch a favorite

More information

Machine Translation: Examples. Statistical NLP Spring MT: Evaluation. Phrasal / Syntactic MT: Examples. Lecture 7: Phrase-Based MT

Machine Translation: Examples. Statistical NLP Spring MT: Evaluation. Phrasal / Syntactic MT: Examples. Lecture 7: Phrase-Based MT Statistical NLP Spring 2011 Machine Translation: Examples Lecture 7: Phrase-Based MT Dan Klein UC Berkeley Levels of Transfer World-Level MT: Examples la politique la haine. politics of hate. the policy

More information

The MAMI Query-By-Voice Experiment Collecting and annotating vocal queries for music information retrieval

The MAMI Query-By-Voice Experiment Collecting and annotating vocal queries for music information retrieval The MAMI Query-By-Voice Experiment Collecting and annotating vocal queries for music information retrieval IPEM, Dept. of musicology, Ghent University, Belgium Outline About the MAMI project Aim of the

More information

Guide for Utilization Measurement and Management of Fleet Equipment NCHRP 13-05

Guide for Utilization Measurement and Management of Fleet Equipment NCHRP 13-05 Guide for Utilization Measurement and Management of Fleet Equipment NCHRP 13-05 Ali Hajbabaie, Ph.D. Department of Civil and Environmental Engineering Objectives Develop a guide for utilization measurement

More information

COMP Test on Psychology 320 Check on Mastery of Prerequisites

COMP Test on Psychology 320 Check on Mastery of Prerequisites COMP Test on Psychology 320 Check on Mastery of Prerequisites This test is designed to provide you and your instructor with information on your mastery of the basic content of Psychology 320. The results

More information

GENOTYPE AND ENVIRONMENTAL DIFFERENCES IN FIBRE DIAMETER PROFILE CHARACTERISTICS AND THEIR RELATIONSHIP WITH STAPLE STRENGTH IN MERINO SHEEP

GENOTYPE AND ENVIRONMENTAL DIFFERENCES IN FIBRE DIAMETER PROFILE CHARACTERISTICS AND THEIR RELATIONSHIP WITH STAPLE STRENGTH IN MERINO SHEEP GENOTYPE AND ENVIRONMENTAL DIFFERENCES IN FIBRE DIAMETER PROFILE CHARACTERISTICS AND THEIR RELATIONSHIP WITH STAPLE STRENGTH IN MERINO SHEEP D.J. Brown 1,B.J.Crook 1 and I.W. Purvis 2 1 Animal Science,

More information

STAT 113: Statistics and Society Ellen Gundlach, Purdue University. (Chapters refer to Moore and Notz, Statistics: Concepts and Controversies, 8e)

STAT 113: Statistics and Society Ellen Gundlach, Purdue University. (Chapters refer to Moore and Notz, Statistics: Concepts and Controversies, 8e) STAT 113: Statistics and Society Ellen Gundlach, Purdue University (Chapters refer to Moore and Notz, Statistics: Concepts and Controversies, 8e) Learning Objectives for Exam 1: Unit 1, Part 1: Population

More information

WHAT MAKES FOR A HIT POP SONG? WHAT MAKES FOR A POP SONG?

WHAT MAKES FOR A HIT POP SONG? WHAT MAKES FOR A POP SONG? WHAT MAKES FOR A HIT POP SONG? WHAT MAKES FOR A POP SONG? NICHOLAS BORG AND GEORGE HOKKANEN Abstract. The possibility of a hit song prediction algorithm is both academically interesting and industry motivated.

More information

Fundamentals and applications of resampling methods for the analysis of speech production and perception data.

Fundamentals and applications of resampling methods for the analysis of speech production and perception data. Fundamentals and applications of resampling methods for the analysis of speech production and perception data. Olivier Crouzet 1 Laboratoire de Linguistique de Nantes (LLING UMR 6310, Université de Nantes

More information

SECTION I. THE MODEL. Discriminant Analysis Presentation~ REVISION Marcy Saxton and Jenn Stoneking DF1 DF2 DF3

SECTION I. THE MODEL. Discriminant Analysis Presentation~ REVISION Marcy Saxton and Jenn Stoneking DF1 DF2 DF3 Discriminant Analysis Presentation~ REVISION Marcy Saxton and Jenn Stoneking COM 631/731--Multivariate Statistical Methods Instructor: Prof. Kim Neuendorf (k.neuendorf@csuohio.edu) Cleveland State University,

More information

Reproducibility Assessment of Independent Component Analysis of Expression Ratios from DNA microarrays.

Reproducibility Assessment of Independent Component Analysis of Expression Ratios from DNA microarrays. Reproducibility Assessment of Independent Component Analysis of Expression Ratios from DNA microarrays. David Philip Kreil David J. C. MacKay Technical Report Revision 1., compiled 16th October 22 Department

More information

Variation in fibre diameter profile characteristics between wool staples in Merino sheep

Variation in fibre diameter profile characteristics between wool staples in Merino sheep Variation in fibre diameter profile characteristics between wool staples in Merino sheep D.J. Brown 1,2,B.J.Crook 1 and I.W. Purvis 3 1 Animal Science, University of New England, Armidale, NSW 2351 2 Current

More information

On prosody and humour in Greek conversational narratives

On prosody and humour in Greek conversational narratives On prosody and humour in Greek conversational narratives Argiris Archakis University of Patras Dimitris Papazachariou University of Patras Maria Giakoumelou University of Patras Villy Tsakona University

More information

DOES MOVIE SOUNDTRACK MATTER? THE ROLE OF SOUNDTRACK IN PREDICTING MOVIE REVENUE

DOES MOVIE SOUNDTRACK MATTER? THE ROLE OF SOUNDTRACK IN PREDICTING MOVIE REVENUE DOES MOVIE SOUNDTRACK MATTER? THE ROLE OF SOUNDTRACK IN PREDICTING MOVIE REVENUE Haifeng Xu, Department of Information Systems, National University of Singapore, Singapore, xu-haif@comp.nus.edu.sg Nadee

More information

Modelling Perception of Structure and Affect in Music: Spectral Centroid and Wishart s Red Bird

Modelling Perception of Structure and Affect in Music: Spectral Centroid and Wishart s Red Bird Modelling Perception of Structure and Affect in Music: Spectral Centroid and Wishart s Red Bird Roger T. Dean MARCS Auditory Laboratories, University of Western Sydney, Australia Freya Bailes MARCS Auditory

More information

Release Year Prediction for Songs

Release Year Prediction for Songs Release Year Prediction for Songs [CSE 258 Assignment 2] Ruyu Tan University of California San Diego PID: A53099216 rut003@ucsd.edu Jiaying Liu University of California San Diego PID: A53107720 jil672@ucsd.edu

More information

Phone-based Plosive Detection

Phone-based Plosive Detection Phone-based Plosive Detection 1 Andreas Madsack, Grzegorz Dogil, Stefan Uhlich, Yugu Zeng and Bin Yang Abstract We compare two segmentation approaches to plosive detection: One aproach is using a uniform

More information

Blueline, Linefree, Accuracy Ratio, & Moving Absolute Mean Ratio Charts

Blueline, Linefree, Accuracy Ratio, & Moving Absolute Mean Ratio Charts INTRODUCTION This instruction manual describes for users of the Excel Standard Celeration Template(s) the features of each page or worksheet in the template, allowing the user to set up and generate charts

More information

CSE 517 Natural Language Processing Winter 2013

CSE 517 Natural Language Processing Winter 2013 CSE 517 Natural Language Processing Winter 2013 Phrase Based Translation Luke Zettlemoyer Slides from Philipp Koehn and Dan Klein Phrase-Based Systems Sentence-aligned corpus Word alignments cat chat 0.9

More information

Running head: FEMALE SEXUALIZATION ON SOCIAL MEDIA 1

Running head: FEMALE SEXUALIZATION ON SOCIAL MEDIA 1 Running head: FEMALE SEXUALIZATION ON SOCIAL MEDIA 1 Income Inequality Not Gender Inequality Positively Covaries With Female Sexualization On Social Media Supplementary Information Appendix Authors: Khandis

More information

A STATISTICAL VIEW ON THE EXPRESSIVE TIMING OF PIANO ROLLED CHORDS

A STATISTICAL VIEW ON THE EXPRESSIVE TIMING OF PIANO ROLLED CHORDS A STATISTICAL VIEW ON THE EXPRESSIVE TIMING OF PIANO ROLLED CHORDS Mutian Fu 1 Guangyu Xia 2 Roger Dannenberg 2 Larry Wasserman 2 1 School of Music, Carnegie Mellon University, USA 2 School of Computer

More information

Reconstruction of Ca 2+ dynamics from low frame rate Ca 2+ imaging data CS229 final project. Submitted by: Limor Bursztyn

Reconstruction of Ca 2+ dynamics from low frame rate Ca 2+ imaging data CS229 final project. Submitted by: Limor Bursztyn Reconstruction of Ca 2+ dynamics from low frame rate Ca 2+ imaging data CS229 final project. Submitted by: Limor Bursztyn Introduction Active neurons communicate by action potential firing (spikes), accompanied

More information

WEB APPENDIX. Managing Innovation Sequences Over Iterated Offerings: Developing and Testing a Relative Innovation, Comfort, and Stimulation

WEB APPENDIX. Managing Innovation Sequences Over Iterated Offerings: Developing and Testing a Relative Innovation, Comfort, and Stimulation WEB APPENDIX Managing Innovation Sequences Over Iterated Offerings: Developing and Testing a Relative Innovation, Comfort, and Stimulation Framework of Consumer Responses Timothy B. Heath Subimal Chatterjee

More information

Singer Recognition and Modeling Singer Error

Singer Recognition and Modeling Singer Error Singer Recognition and Modeling Singer Error Johan Ismael Stanford University jismael@stanford.edu Nicholas McGee Stanford University ndmcgee@stanford.edu 1. Abstract We propose a system for recognizing

More information

Using Musical Knowledge to Extract Expressive Performance. Information from Audio Recordings. Eric D. Scheirer. E15-401C Cambridge, MA 02140

Using Musical Knowledge to Extract Expressive Performance. Information from Audio Recordings. Eric D. Scheirer. E15-401C Cambridge, MA 02140 Using Musical Knowledge to Extract Expressive Performance Information from Audio Recordings Eric D. Scheirer MIT Media Laboratory E15-41C Cambridge, MA 214 email: eds@media.mit.edu Abstract A computer

More information

RANDOMIZED COMPLETE BLOCK DESIGN (RCBD) Probably the most used and useful of the experimental designs.

RANDOMIZED COMPLETE BLOCK DESIGN (RCBD) Probably the most used and useful of the experimental designs. Description of the Design RANDOMIZED COMPLETE BLOCK DESIGN (RCBD) Probably the most used and useful of the experimental designs. Takes advantage of grouping similar experimental units into blocks or replicates.

More information

Exercises. ASReml Tutorial: B4 Bivariate Analysis p. 55

Exercises. ASReml Tutorial: B4 Bivariate Analysis p. 55 Exercises Coopworth data set - see Reference manual Five traits with varying amounts of data. No depth of pedigree (dams not linked to sires) Do univariate analyses Do bivariate analyses. Use COOP data

More information

Audio Feature Extraction for Corpus Analysis

Audio Feature Extraction for Corpus Analysis Audio Feature Extraction for Corpus Analysis Anja Volk Sound and Music Technology 5 Dec 2017 1 Corpus analysis What is corpus analysis study a large corpus of music for gaining insights on general trends

More information

CURRENT CHALLENGES IN THE EVALUATION OF PREDOMINANT MELODY EXTRACTION ALGORITHMS

CURRENT CHALLENGES IN THE EVALUATION OF PREDOMINANT MELODY EXTRACTION ALGORITHMS CURRENT CHALLENGES IN THE EVALUATION OF PREDOMINANT MELODY EXTRACTION ALGORITHMS Justin Salamon Music Technology Group Universitat Pompeu Fabra, Barcelona, Spain justin.salamon@upf.edu Julián Urbano Department

More information

Appendices to Chapter 4. Appendix 4A: Variables used in the Analysis

Appendices to Chapter 4. Appendix 4A: Variables used in the Analysis Appendices to Chapter 4 Appendix 4A: Variables used in the Analysis Dependent Variable 1. Presidential News: 1897-1998. Front Page News Stories on the President as a percentage of all front page news stories,

More information

Automatic Laughter Detection

Automatic Laughter Detection Automatic Laughter Detection Mary Knox Final Project (EECS 94) knoxm@eecs.berkeley.edu December 1, 006 1 Introduction Laughter is a powerful cue in communication. It communicates to listeners the emotional

More information

8 Nonparametric test. Question 1: Are (expected) value of x and y the same?

8 Nonparametric test. Question 1: Are (expected) value of x and y the same? Econometrics A: Tokyo International University 2017 autumn Satoshi OHIRA 26 8 Nonparametric test Question 1: Are (expected) value of x and y the same? One of the simplest way to answer the question is

More information

Setting Energy Efficiency Requirements Using Multivariate Regression

Setting Energy Efficiency Requirements Using Multivariate Regression Setting Energy Efficiency Requirements Using Multivariate Regression Matt Malinowski, ICF, Presenter Dan Baldewicz, ICF EEDAL 2017 Irvine, CA September 13, 2017 About ICF ICF (NASDAQ:ICFI) is a global

More information

Supplementary Figures Supplementary Figure 1 Comparison of among-replicate variance in invasion dynamics

Supplementary Figures Supplementary Figure 1 Comparison of among-replicate variance in invasion dynamics 1 Supplementary Figures Supplementary Figure 1 Comparison of among-replicate variance in invasion dynamics Scaled posterior probability densities for among-replicate variances in invasion speed (nine replicates

More information

Experiments with Fisher Data

Experiments with Fisher Data Experiments with Fisher Data Gunnar Evermann, Bin Jia, Kai Yu, David Mrva Ricky Chan, Mark Gales, Phil Woodland May 16th 2004 EARS STT Meeting May 2004 Montreal Overview Introduction Pre-processing 2000h

More information

Placement Rent Exponent Calculation Methods, Temporal Behaviour, and FPGA Architecture Evaluation. Joachim Pistorius and Mike Hutton

Placement Rent Exponent Calculation Methods, Temporal Behaviour, and FPGA Architecture Evaluation. Joachim Pistorius and Mike Hutton Placement Rent Exponent Calculation Methods, Temporal Behaviour, and FPGA Architecture Evaluation Joachim Pistorius and Mike Hutton Some Questions How best to calculate placement Rent? Are there biases

More information

Expressive Singing Synthesis based on Unit Selection for the Singing Synthesis Challenge 2016

Expressive Singing Synthesis based on Unit Selection for the Singing Synthesis Challenge 2016 Expressive Singing Synthesis based on Unit Selection for the Singing Synthesis Challenge 2016 Jordi Bonada, Martí Umbert, Merlijn Blaauw Music Technology Group, Universitat Pompeu Fabra, Spain jordi.bonada@upf.edu,

More information

Experiments on musical instrument separation using multiplecause

Experiments on musical instrument separation using multiplecause Experiments on musical instrument separation using multiplecause models J Klingseisen and M D Plumbley* Department of Electronic Engineering King's College London * - Corresponding Author - mark.plumbley@kcl.ac.uk

More information

Comprehenders Rationally Adapt Semantic Predictions to the Statistics of the Local Environment: a Bayesian Model of Trial-by-Trial N400 Amplitudes

Comprehenders Rationally Adapt Semantic Predictions to the Statistics of the Local Environment: a Bayesian Model of Trial-by-Trial N400 Amplitudes Comprehenders Rationally Adapt Semantic Predictions to the Statistics of the Local Environment: a Bayesian Model of Trial-by-Trial N400 Amplitudes Nathaniel Delaney-Busch (ndelan02@tufts.edu) 1, Emily

More information

Box-Jenkins Methodology: Linear Time Series Analysis Using R

Box-Jenkins Methodology: Linear Time Series Analysis Using R Box-Jenkins Methodology: Linear Time Series Analysis Using R Melody Ghahramani Mathematics & Statistics January 29, 2014 Melody Ghahramani (U of Winnipeg) R Seminar Series January 29, 2014 1 / 67 Outline

More information

Seymour Centre 2019 Education Program THE TEMPEST CURRICULUM LINKS. English Stage Content Objective Outcomes

Seymour Centre 2019 Education Program THE TEMPEST CURRICULUM LINKS. English Stage Content Objective Outcomes Suitable for: Stage 4 Stage 6 HSC Subject Links: English, Drama Seymour Centre 2019 Education Program THE TEMPEST CURRICULUM LINKS English Stage Content Objective Outcomes Stage 4 Text which is widely

More information

Analysis of Film Revenues: Saturated and Limited Films Megan Gold

Analysis of Film Revenues: Saturated and Limited Films Megan Gold Analysis of Film Revenues: Saturated and Limited Films Megan Gold University of Nevada, Las Vegas. Department of. DOI: http://dx.doi.org/10.15629/6.7.8.7.5_3-1_s-2017-3 Abstract: This paper analyzes film

More information

How Consumers Content Preference Affects Cannibalization: An Empirical Analysis of an E-book Market

How Consumers Content Preference Affects Cannibalization: An Empirical Analysis of an E-book Market How Consumers Content Preference Affects Cannibalization: An Empirical Analysis of an E-book Market Research-in-Progress Kyunghee Lee KAIST College of Business 85 Hoegiro Dongdaemoon-gu Seoul, Korea kyunghee.lee@kaist.ac.kr

More information

Special Article. Prior Publication Productivity, Grant Percentile Ranking, and Topic-Normalized Citation Impact of NHLBI Cardiovascular R01 Grants

Special Article. Prior Publication Productivity, Grant Percentile Ranking, and Topic-Normalized Citation Impact of NHLBI Cardiovascular R01 Grants Special Article Prior Publication Productivity, Grant Percentile Ranking, and Topic-Normalized Citation Impact of NHLBI Cardiovascular R01 Grants Jonathan R. Kaltman, Frank J. Evans, Narasimhan S. Danthi,

More information

ON RESAMPLING DETECTION IN RE-COMPRESSED IMAGES. Matthias Kirchner, Thomas Gloe

ON RESAMPLING DETECTION IN RE-COMPRESSED IMAGES. Matthias Kirchner, Thomas Gloe ON RESAMPLING DETECTION IN RE-COMPRESSED IMAGES Matthias Kirchner, Thomas Gloe Technische Universität Dresden, Faculty of Computer Science, Institute of Systems Architecture 162 Dresden, Germany ABSTRACT

More information

PROC GLM AND PROC MIXED CODES FOR TREND ANALYSES FOR ROW-COLUMN DESIGNED EXPERIMENTS

PROC GLM AND PROC MIXED CODES FOR TREND ANALYSES FOR ROW-COLUMN DESIGNED EXPERIMENTS PROC GLM AND PROC MIXED CODES FOR TREND ANALYSES FOR ROW-COLUMN DESIGNED EXPERIMENTS BU-1491-M June,2000 Walter T. Federer Dept. of Biometrics Cornell University Ithaca, NY 14853 wtfl@cornell.edu and Russell

More information

Template Matching for Artifact Detection and Removal

Template Matching for Artifact Detection and Removal RADBOUD UNIVERSITY NIJMEGEN Template Matching for Artifact Detection and Removal by R.Barth supervised by prof. dr. ir. P.Desain and drs. R. Vlek A thesis submitted in partial fulfillment for the degree

More information

Learning Musicianship for Automatic Accompaniment

Learning Musicianship for Automatic Accompaniment Learning Musicianship for Automatic Accompaniment Gus (Guangyu) Xia Roger Dannenberg School of Computer Science Carnegie Mellon University 2 Introduction: Musical background Interaction Expression Rehearsal

More information

First Step Towards Enhancing Word Embeddings with Pitch Accents for DNN-based Slot Filling on Recognized Text

First Step Towards Enhancing Word Embeddings with Pitch Accents for DNN-based Slot Filling on Recognized Text First Step Towards Enhancing Word Embeddings with Pitch Accents for DNN-based Slot Filling on Recognized Text Sabrina Stehwien, Ngoc Thang Vu IMS, University of Stuttgart March 16, 2017 Slot Filling sequential

More information

Paired plot designs experience and recommendations for in field product evaluation at Syngenta

Paired plot designs experience and recommendations for in field product evaluation at Syngenta Paired plot designs experience and recommendations for in field product evaluation at Syngenta 1. What are paired plot designs? 2. Analysis and reporting of paired plot designs 3. Case study 1 : analysis

More information

Mixed Models Lecture Notes By Dr. Hanford page 151 More Statistics& SAS Tutorial at Type 3 Tests of Fixed Effects

Mixed Models Lecture Notes By Dr. Hanford page 151 More Statistics& SAS Tutorial at  Type 3 Tests of Fixed Effects Assessing fixed effects Mixed Models Lecture Notes By Dr. Hanford page 151 In our example so far, we have been concentrating on determining the covariance pattern. Now we ll look at the treatment effects

More information

Video-based Vibrato Detection and Analysis for Polyphonic String Music

Video-based Vibrato Detection and Analysis for Polyphonic String Music Video-based Vibrato Detection and Analysis for Polyphonic String Music Bochen Li, Karthik Dinesh, Gaurav Sharma, Zhiyao Duan Audio Information Research Lab University of Rochester The 18 th International

More information

INTERNATIONAL TELECOMMUNICATION UNION ).4%2.!4)/.!,!.!,/'5% #!22)%2 3934%-3

INTERNATIONAL TELECOMMUNICATION UNION ).4%2.!4)/.!,!.!,/'5% #!22)%2 3934%-3 INTERNATIONAL TELECOMMUNICATION UNION )454 ' TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU ).4%2.!4)/.!,!.!,/'5% #!22)%2 3934%-3 '%.%2!, #(!2!#4%2)34)#3 /& ).4%2.!4)/.!, #!22)%2 4%,%0(/.% 3934%-3 /.

More information

UPDATED STANDARDIZED CATCH RATES OF BLUEFIN TUNA (THUNNUS THYNNUS) FROM THE TRAP FISHERY IN TUNISIA

UPDATED STANDARDIZED CATCH RATES OF BLUEFIN TUNA (THUNNUS THYNNUS) FROM THE TRAP FISHERY IN TUNISIA SCRS/2004/083 Col. Vol. Sci. Pap. ICCAT, 58(2): 596-605 (2005) UPDATED STANDARDIZED CATCH RATES OF BLUEFIN TUNA (THUNNUS THYNNUS) FROM THE TRAP FISHERY IN TUNISIA A. Hattour 1, J.M. de la Serna 2 and J.M

More information

The Roles of Politeness and Humor in the Asymmetry of Affect in Verbal Irony

The Roles of Politeness and Humor in the Asymmetry of Affect in Verbal Irony DISCOURSE PROCESSES, 41(1), 3 24 Copyright 2006, Lawrence Erlbaum Associates, Inc. The Roles of Politeness and Humor in the Asymmetry of Affect in Verbal Irony Jacqueline K. Matthews Department of Psychology

More information

TERRESTRIAL broadcasting of digital television (DTV)

TERRESTRIAL broadcasting of digital television (DTV) IEEE TRANSACTIONS ON BROADCASTING, VOL 51, NO 1, MARCH 2005 133 Fast Initialization of Equalizers for VSB-Based DTV Transceivers in Multipath Channel Jong-Moon Kim and Yong-Hwan Lee Abstract This paper

More information

Subjective evaluation of common singing skills using the rank ordering method

Subjective evaluation of common singing skills using the rank ordering method lma Mater Studiorum University of ologna, ugust 22-26 2006 Subjective evaluation of common singing skills using the rank ordering method Tomoyasu Nakano Graduate School of Library, Information and Media

More information

System Identification

System Identification System Identification Arun K. Tangirala Department of Chemical Engineering IIT Madras July 26, 2013 Module 9 Lecture 2 Arun K. Tangirala System Identification July 26, 2013 16 Contents of Lecture 2 In

More information

Unit 2: Graphing Part 5: Standard Form

Unit 2: Graphing Part 5: Standard Form Unit 2: Graphing Part 5: Standard Form SWBAT graph linear equations in standard form. Assignments: Take Home Test Review 102 Lesson from Noelani Davis, https://betterlesson.com/lesson/560482/graphing-linear-functions-in-standard-form-day-1-of-2.

More information

A PROBABILISTIC TOPIC MODEL FOR UNSUPERVISED LEARNING OF MUSICAL KEY-PROFILES

A PROBABILISTIC TOPIC MODEL FOR UNSUPERVISED LEARNING OF MUSICAL KEY-PROFILES A PROBABILISTIC TOPIC MODEL FOR UNSUPERVISED LEARNING OF MUSICAL KEY-PROFILES Diane J. Hu and Lawrence K. Saul Department of Computer Science and Engineering University of California, San Diego {dhu,saul}@cs.ucsd.edu

More information

Use black ink or black ball-point pen. Pencil should only be used for drawing. *

Use black ink or black ball-point pen. Pencil should only be used for drawing. * General Certificate of Education June 2009 Advanced Subsidiary Examination MATHEMATICS Unit Statistics 1B MS/SS1B STATISTICS Unit Statistics 1B Wednesday 20 May 2009 1.30 pm to 3.00 pm For this paper you

More information

FANTASTIC: A Feature Analysis Toolbox for corpus-based cognitive research on the perception of popular music

FANTASTIC: A Feature Analysis Toolbox for corpus-based cognitive research on the perception of popular music FANTASTIC: A Feature Analysis Toolbox for corpus-based cognitive research on the perception of popular music Daniel Müllensiefen, Psychology Dept Geraint Wiggins, Computing Dept Centre for Cognition, Computation

More information