model based recursive partitioning for bradley terry
play

Model-based recursive partitioning for Bradley-Terry models Florian - PowerPoint PPT Presentation

Model-based recursive partitioning for Bradley-Terry models Florian Wickelmaier Carolin Strobl Achim Zeileis 2nd Workshop on Psychometric Computing February 25-26, 2010 Goal of model based partitioning Motivation The preference scaling


  1. Model-based recursive partitioning for Bradley-Terry models Florian Wickelmaier Carolin Strobl Achim Zeileis 2nd Workshop on Psychometric Computing February 25-26, 2010

  2. Goal of model based partitioning Motivation ∙ The preference scaling of a population of subjects may not be homogeneous. ∙ Different groups of subjects with certain characteristics may show different preference scalings. ∙ For each group, a separate Bradley-Terry (BT) model with different parameters might hold. ∙ The groups may be unknown a priori. Goal Identify groups of subjects with homogeneous model parameters. 2

  3. Steps of BT model partitioning algorithm 1. Fit a BT model to the paired comparisons of all subjects in the current (sub-)sample, starting with the full sample. 2. Assess the stability of the BT model parameters with respect to each available covariate. 3. If there is significant instability, split the sample along the covariate with the strongest instability and use the cutpoint with the highest improvement of the model fit. 4. Repeat steps 1–3 recursively in the resulting subsamples until there are no more significant instabilities (or the subsample is too small). 3

  4. Fitting the Bradley-Terry model In a paired-comparison, the probabilities of choosing the first alternative (1), the second alternative (2), or of being undecided (3) are (Davidson, 1970) 휋 j p jj ′ 1 = 휋 j + 휋 j ′ + 휈 √ 휋 j 휋 j ′ 휋 j ′ p jj ′ 2 = 휋 j + 휋 j ′ + 휈 √ 휋 j 휋 j ′ 휈 √ 휋 j 휋 j ′ = p jj ′ 3 휋 j + 휋 j ′ + 휈 √ 휋 j 휋 j ′ With 휃 = (log( 휋 1 ) , . . . , log( 휋 k − 1 ) , log( 휈 )) ⊤ , the model may be fitted using an auxiliary log-linear model (or a logit model, when there are no ties). 4

  5. Attractiveness of Germany’s Next Topmodels 2007 Method ∙ N = 192 stratified by gender and age, 48 in each subgroup ∙ Presented with photographs of the top six contestants ∙ Each participant did all 6 ⋅ 5 / 2 = 15 pairwise comparisons Research question Does perceived attractiveness of the contestants vary with gender and age, and with previous knowledge of the participants? q1 Do you recognize the women on the pictures?/Do you know the TV show Germany’s Next Topmodel? q2 Did you watch Germany’s Next Topmodel regularly? q3 Did you watch the final show of Germany’s Next Topmodel?/Do you know who won Germany’s Next Topmodel? 5

  6. The top six contestants Barbara Anni Hana Fiona Mandy Anja 6

  7. Binary paired-comparison judgments Which of these two women do you find more attractive? 7

  8. Binary paired-comparison judgments Which of these two women do you find more attractive? 7

  9. The paircomp class paircomp is designed for holding paired comparisons of k objects measured for n subjects. Topmodel2007$pref[1:5] [1] {Brb > Ann, Brb > Han, Ann > Han, Brb > Fin, Ann < Fin...} [2] {Brb < Ann, Brb < Han, Ann < Han, Brb < Fin, Ann > Fin...} [3] {Brb < Ann, Brb < Han, Ann < Han, Brb < Fin, Ann < Fin...} [4] {Brb < Ann, Brb > Han, Ann > Han, Brb > Fin, Ann > Fin...} [5] {Brb < Ann, Brb < Han, Ann < Han, Brb < Fin, Ann > Fin...} Under the hood: > unclass(Topmodel2007$pref[1:2]) 1:2 1:3 2:3 1:4 2:4 3:4 1:5 2:5 3:5 4:5 1:6 2:6 3:6 4:6 5:6 [1,] 1 1 1 1 -1 -1 1 -1 -1 1 -1 -1 -1 -1 -1 [2,] -1 -1 -1 -1 1 1 1 1 1 1 1 1 1 1 1 attr(,"labels") [1] "Barbara" "Anni" "Hana" "Fiona" "Mandy" "Anja" attr(,"mscale") [1] -1 1 attr(,"ordered") [1] FALSE 8

  10. Descriptive statistics Aggregate judgments, N = 192 per pair summary(Topmodel2007$pref) plot(Topmodel2007$pref) > < > < Barbara : Anni 121 71 Brb Ann Barbara : Hana 98 94 Brb Han Anni : Hana 75 117 Ann Han Brb Fin Barbara : Fiona 101 91 Ann Fin Anni : Fiona 81 111 Han Fin Hana : Fiona 113 79 Brb Mnd Ann Mnd Barbara : Mandy 130 62 Han Mnd Anni : Mandy 114 78 Fin Mnd Hana : Mandy 130 62 Brb Anj Ann Anj Fiona : Mandy 131 61 Han Anj Barbara : Anja 123 69 Fin Anj Mnd Anj Anni : Anja 112 80 Hana : Anja 130 62 0.0 0.2 0.4 0.6 0.8 1.0 Fiona : Anja 119 73 Proportion of comparisons Mandy : Anja 92 100 9

  11. Bradley-Terry model for the entire sample tm <- btReg.fit(Topmodel2007$pref) # workhorse function worth(tm) # worth parameters Barbara Anni Hana Fiona Mandy Anja 0.22 0.14 0.23 0.19 0.10 0.11 plot(tm) 0.30 0.25 Worth parameters 0.20 0.15 0.10 0.05 0.00 Brb Ann Han Fin Mnd Anj Objects 10

  12. Partitioning the Bradley-Terry model tmt <- bttree(preference ˜ ., data=Topmodel2007, minsplit=5) Test for structural change sctest(tmt, node=1) gender age q1 q2 q3 statistic 17.088 32.357 12.632 19.839 6.759 p.value 0.022 0.001 0.128 0.007 0.745 Use age for splitting the sample, and fit model in the subsamples. Continue recursively. 11

  13. Partitioned Bradley-Terry model 1 age p < 0.001 ≤ 52 > 52 2 q2 p = 0.017 yes no 4 gender p = 0.007 male female Node 3 (n = 35) Node 5 (n = 71) Node 6 (n = 56) Node 7 (n = 30) 0.5 0.5 0.5 0.5 ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● 0 0 0 0 B Ann H F M Anj B Ann H F M Anj B Ann H F M Anj B Ann H F M Anj 12

  14. Conclusions With model based recursive partitioning you can ∙ find groups of subjects with similar model parameters ∙ by means of partitioning the covariate space. The advantages of this approach are that ∙ the groups need not be known ∙ combinations of relevant covariates are identified ∙ interactions between covariates are incorporated ∙ continuous covariates are discretized in an optimal, data-driven way for splitting 13

  15. Thank you for your attention http://CRAN.r-project.org/package=psychotree Strobl, C., Wickelmaier, F., & Zeileis, A. (in press). Accounting for individual differences in Bradley-Terry models by means of recursive partitioning. Journal of Educational and Behavioral Statistics . 14

  16. Structural change 1200 4000 1000 2000 800 0 y y 600 −2000 400 −4000 200 2004 2006 2008 2010 2012 2004 2006 2008 2010 2012 t t 15

  17. Structural change log−likelihood −1900 −1890 −1880 −1870 20 30 age 40 50 60 16

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend