-
Notifications
You must be signed in to change notification settings - Fork 0
/
castillo-et-al-2021-prerint-meritocracy-scale.Rmd
1171 lines (972 loc) · 87.3 KB
/
castillo-et-al-2021-prerint-meritocracy-scale.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: "Measuring Perceptions and Preferences for Meritocracy"
css: "custom.css"
linestretch: '1.5'
link-citations: yes
date: "September 2021"
author:
- Juan Carlos Castillo, Universidad de Chile - jc-castillo.com
- Julio Iturra, COES
- Luis Maldonado, P. Universidad Católica de Chile
- Francisco Meneses, Universidad de Chile
- Jorge Atria, Universidad Diego Portales
abstract: "Economic and social inequalities have generated growing concerns and crises across contemporary societies. One of the mechanisms proposed by social sciences to explain the persistence of inequality is the belief in meritocracy, which would legitimize economic disparities based on differences in effort and talent. Despite its wide use as a concept, empirical research on meritocracy is relatively novel and characterized by diverse conceptualizations and measures that make the findings and their interpretation rather inconsistent. Most of the studies in the area have relied upon secondary data to operationalize meritocracy, with a wide variation in the use and interpretation of the same survey items. Taking into account the extant literature that uses measures of meritocracy, this article identifies a series of drawbacks and inconsistencies within and between studies regarding the conceptualization and operationalization of meritocracy beliefs. Based on this critical analysis, we propose a conceptual framework for measuring perceptions and preferences for meritocracy and non-meritocracy, which is then tested through confirmatory analysis using ISSP (International Social Survey Programme) data as well as a novel scale designed with this purpose (N=2,141). Our results support the conceptual framework and its operationalizarion, although with a better fit for the proposed scale than for the ISSP survey. Our discussion highlights the importance of considering different dimensions in order to advance in the study of meritocracy."
output:
bookdown::word_document2:
number_sections: false
bookdown::html_document2:
number_sections: false
bookdown::pdf_document2:
template: null
toc: false
number_sections: false
linkcolor: blue
bibliography:
- input/bib/meritocracy.bib
csl: input/bib/apa7-singlespace.csl
editor_options:
chunk_output_type: console
geometry: margin=0.78in
header-includes:
- \renewcommand{\and}{\\} # this is for line breaks between authors
- \usepackage{times} # Times New Roman
- \usepackage{caption}
- \captionsetup[figure, table]{labelfont={bf},labelformat={default},labelsep=period}
- \usepackage[figurename=Fig.]{caption}
- \usepackage{graphicx}
- \usepackage{float}
- \usepackage{booktabs}
- \usepackage{longtable}
- \usepackage{array}
- \usepackage{multirow}
- \usepackage{wrapfig}
- \usepackage{float}
- \usepackage{colortbl}
- \usepackage{pdflscape}
- \usepackage{tabu}
- \usepackage{threeparttable}
always_allow_html: true # for word output
fontsize: 10pt
---
```{r eval=FALSE, include=FALSE}
# for render in pdf run rmarkdown::render_site("docs/paper.Rmd", output_format = "all")
# clean #in the yml
rmarkdown::render("paper.Rmd", output_format = "bookdown::pdf_document2")
rmarkdown::render("paper.Rmd", output_format = "bookdown::html_document2")
# rmarkdown::render("paper.Rmd", output_format = "bookdown::word_document2")
```
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo=FALSE, warning = FALSE,message = FALSE, cache = TRUE,out.width = '85%',fig.pos= "H", fig.align = 'center')
# knitr::opts_knit$set(base.url = "../") #relative path for .html output file
# knitr::opts_knit$set(root.dir = "../") #relative path for chunks within .rmd files
options(scipen=999)
options(kableExtra.auto_format = FALSE)
rm(list=ls())
options(knitr.kable.NA = '')
options(knitr.graphics.error = FALSE)
Sys.setlocale("LC_ALL", "ES_ES.UTF-8")
```
# Acknowledgments
The authors recognize the support of ANID/FONDECYT grant 1210847 and of the Center for Conflict and Social Cohesion Studies (COES) grant ANID/FONDAP 1513009.
# Introduction
Economic inequality and income concentration have become topics of growing concern over the last years, acquiring even more salience in times of pandemic and economic crises. This has led to a series of social movements in different societies as well as diverse critical analyses regarding the development of capitalism and its consequences [@streeck_politics_2014; @piketty_capital_2014]. In this context, the study of views, preferences, and perceptions of inequality has acquired relevance in the social sciences, in topics such as redistributive preferences [@alesina_fairness_2005; @dimick_models_2018], the legitimization of economic inequality [@schroder_income_2017] and the functioning of meritocracy [@duru-bellat_who_2012; @mijs_paradox_2019; @reynolds_perceptions_2014; @atria_economic_2020]. Within this context, the ideal of meritocracy has been strongly challenged as an unfulfilled promise of modern societies that allows the perpetuation of social inequalities [@sandel_tyranny_2020; @goldthorpe_myth_2003].
In general, meritocracy is defined as a system of distribution of resources and rewards based on individual merit, which in its original conception is a combination of talent and effort [@young_rise_1962]. This traditional conception of merit places in a secondary position the possible interference of structural or non-meritocratic factors, such as inheritance, personal contacts, and luck [@breen_class_1999; @saunders_might_1995; @yair_meritocracy_2007; @land_we_2006; @young_rise_1962]. Social psychology and sociology have studied the characteristics and consequences of beliefs in meritocracy, under the general hypothesis that a greater belief in meritocracy emphasizes the role of the individual over structural factors in personal achievements, leading to greater legitimization of inequalities [@preminger_meritocracy_2020; @trump_when_2020; @hadjar_meritokratie_2008; @madeira_primes_2019]. Such research has raised criticism of meritocracy as a moral standard of distribution given the preponderant weight of non-meritocratic elements upon the individual status and social mobility [@sandel_tyranny_2020; @witteveen_reconsidering_2020; @arrow_meritocracy_2000; @goldthorpe_myth_2003; @markovits_meritocracy_2019; @khan_privilege_2013].
Due to the role that meritocratic beliefs play in the justification of individual achievement (or failure) in contemporary societies [@hadjar_meritokratie_2008; @markovits_meritocracy_2019; @sandel_tyranny_2020], multiple studies have evaluated the relationship between meritocratic beliefs and personal and/or contextual characteristics. For example, some studies have linked meritocracy to the reinforcement of socio-economic, gender, and ethnic stereotypes [@madeira_primes_2019; @girerd_neoliberalism_2020; @girerd_neoliberalism_2020], as well as the effects of meritocratic beliefs in educational [@generett_stories_2020; @owens_engines_2020] and organizational contexts [@perez_advancing_2020; @aiello_new_2019]. Most of such studies so far have used indicators from existing standard social surveys, such as the International Social Survey Programme (ISSP), to measure meritocracy. However, as we will show later, the concepts used as well as the instruments for measuring meritocracy vary extensively among studies. In many cases, similar phenomena are associated with different indicators, and conversely, often different phenomena are measured with similar indicators. Such trends not only limit the comparability of studies, but also the ability to understanding the effects of meritocratic beliefs across different disciplines and lines of research.
Based on a critical analysis of different approaches to the measurement of meritocracy to date, this article proposes an instrument to both measure and relate two main aspects in the study of meritocracy: perceptions and preferences. Furthermore, it distinguishes between meritocratic and non-meritocratic dimensions, as they are not necessarily two poles of the same continuum as previous studies seem to suggest. This conceptual framework is oriented to develop a measurement instrument as simple and brief as possible, being suitable to be used in public opinion surveys and allowing to integrate meritocratic beliefs in the study of different social phenomena.
## The black-box of meritocratic beliefs {-#blackbox}
In the following, we discuss four critical aspects in studies conceptualizing and measuring meritocracy, based upon which we develop a conceptual and measurement proposal.
a. _Conceptual components_: Is merit only effort?
One recent definition of meritocracy by @mijs_paradox_2019 is the following: "When I discuss meritocracy beliefs, I am referring to citizens' belief in the importance of hard work relative to structural factors." [@mijs_paradox_2019, pg.9]. In the subsequent operationalization, this is associated with the following question and indicator: "how important you think it is for getting ahead in life: (a) hard work", scored from 1 to 5 on a likert scale. The assumptions behind such definition are worth discussing in light of the conceptual meaning of meritocracy and its possibilities of operationalization.
The item used by @mijs_paradox_2019 is part of an items' battery present in several international surveys, usually called "reasons to get ahead". This battery displays a series of indicators related to what people consider important to get ahead in life: hard work, education, ambition, a wealthy family, the right connections, religion, race, and gender. Therefore, when considering only one of the items, it means that other aspects that could be associated with talent, such as education, would not be deemed as meritocratic. As he points out: "Hard work is arguably the most meritocratic part of Michael Young's equation: 'Merit = Intelligence + Effort', for the simple fact that intelligence itself is influenced by a non-meritocratic factor: who your parents happen to be" (p.5).
In this conceptual and measurement approach of meritocratic beliefs, we can observe a couple of strong conceptual assumptions: a) effort would not depend on parental influence, and b) talent (as innate ability) is not meritocratic (contrary to Michael Youngs' original conceptualization). This conceptual and measurement-based assumption is found in other studies, which also assumes effort to be the main and only aspect of meritocracy [@girerd_neoliberalism_2020; @bubak_perceptions_2019], raising the question: Is effort the only dimension behind the concept of meritocracy? The question of whether talent (as intelligence and ability) is or is not considered meritocratic is certainly an interesting topic to discuss from a philosophical point of view, but for those working on empirical studies, it should face empirical scrutiny. Besides, the consideration of talent as part of meritocracy certainly opens some interesting avenues of research, as for instance some studies suggest that for the elites meritocracy is actually related to talent, whereas effort is something more characteristic of the meritocracy of the middle and low classes [@atria_economic_2020].
b. _Beliefs?_
Several approaches to the empirical study of meritocracy based on public opinion surveys refer to the concept of _beliefs_, but with wide differences in meanings and operationalizations. To illustrate this point let us consider the commonly used "reasons to get ahead" battery, mentioned above. Some versions of this battery ask "how important you think it is for getting ahead in life" and then lists several factors, whereas another version of this same battery - sometimes presented along the previous one - asks about "how important you think it _should_ be ...", and then listing the same concepts. Therefore, the question raised here is: Which one of both is a "belief": what _is_ (the first one) or what it _should_ be (the second one)?
The term belief has an ambiguous character in the literature, conceived as "idea-elements" by @converse_nature_1964 or "considerations" by @zaller_nature_1992. As @kluegel_beliefs_1986 pointed out about the scope of beliefs: "This usage encompasses such more specific social-psychological concepts as values, perceptions, and attitudes" (p.30). Therefore, beliefs use to cover almost anything related to subjective factors. To this regard, a relevant distinction in the field of inequality beliefs was made by @janmaat_subjective_2013: "Perceptions refer to subjective estimates of existing inequality (i.e. thoughts about what is). Beliefs are here defined as normative ideas about just inequality (i.e. thoughts about what should be)"(p.359). Several papers dealing with meritocracy use the term beliefs (i.e. what should be), while actually referring to perceptions (i.e. what is). This occurs for instance in @reynolds_perceptions_2014, in which the term belief is used to talk about what @janmaat_subjective_2013 refers to as perceptions, whereas other authors use general terms such as attitudes [@kunovich_systems_2007]. The first attempt to shed light on this issue in meritocracy research was made by @duru-bellat_who_2012, who used the question "how important should the number of years spent in education and training be in deciding how much money people ought to earn?" as a proxy for "desired" meritocracy (normative beliefs). They then determined "perceived" meritocracy, using the questions: "Would you say that in your country, people are rewarded for their efforts?" and "... people are rewarded for their skills?".
Is the belief in meritocracy a perception or a preference with normative meaning? In order to expand the analytical conceptual framework, we believe that both dimensions should be included as proposed by @duru-bellat_who_2012. This opens up the possibility of analyzing whether perceptions and preferences are actually related (i.e. have a high correlation), or whether they are independent aspects of the same phenomenon. As @sonhing_merit_2011 has pointed out, "People can believe that outcomes ought to be distributed on the basis of merit and yet vary in their perceptions of whether this is how society currently operates" (p. 435). In other words, normative beliefs should be considered while taking perceptions into account: a strong normative belief in meritocracy may mean something totally different to someone perceiving high meritocracy than to someone perceiving low meritocracy. To avoid the confusion generated by the term "belief", we propose the terms meritocratic preferences ("what should be"), and meritocratic perceptions ("what is"), as they better reflect the two facets of meritocracy under scrutiny [@castillo_meritocracia_2019].
c. _Non-meritocratic aspects_
Some research in meritocracy considers aspects usually opposed to effort and talent for personal achievement, as for instance the use of personal advantages (as contacts or having a wealthy family) to get ahead in life. For instance, @kunovich_systems_2007 used an items' battery listing a number of factors in relation to "How important each should be in deciding pay..." (as @duru-bellat_who_2012 for desired meritocracy). They consider factors such as education and responsibility as meritocratic, giving them a value of 1 is considered "essential" in the scale response, whereas factors such as having a family or children are valued 1 when rated as "not important at all" (i.e. reverse coded). The assumption behind this approach is that rejecting a supposed non-meritocratic aspect (as having family and/or children) implies a stronger belief in meritocracy. A similar approach of reverse-coding non-meritocratic items was taken by @newman_false_2015, using the same principles applied in the "Preference for the Merit Principle Scale" [@davey_preference_1999].
The assumption that meritocratic and non-meritocratic elements are poles of the same continuum was tested by @reynolds_perceptions_2014 using the "get ahead" perceptions' battery items mentioned above. They considered education, ambition, and hard work as meritocratic, and other factors such as family wealth and connections as non-meritocratic. Despite making and proving this distinction, however, the authors end up subtracting one dimension from the other, thus coming back to the assumption that they are two poles of the same continuum, as @kunovich_systems_2007 also did. Similarly, @roex_attitudes_2018 used ISSP indicators for perceived meritocracy and non-meritocracy to build a single score by reverse coding the non-meritocratic items. Therefore, the treatment of non-meritocratic items has been rather inconsistent across studies and the assumption that they are the simple opposite of meritocracy certainly requires further empirical assessment.
d. _Accounting for measurement error_
Finally, most studies in meritocracy so far have not properly considered the issue of latent structures and measurement error [@brown_confirmatory_2015; @bollen_structural_1989; @ansolabehere_strength_2008], as they mostly use single indicators and/or simple average indexes for measuring meritocracy. Such strategy assumes that the latent construct is measured perfectly (i.e. no error or residual variance) by the selected indicators, going as far as to propose that "... In choosing this strategy of index construction, we argue that support for meritocracy is not a latent variable" [@kunovich_systems_2007 p.653-654]. Although some advances were made by @reynolds_perceptions_2014 through conducting a principal component analysis of meritocratic and non-meritocratic dimensions, they finally chose to build a sum index despite proving a multidimensional latent structure.
## A conceptual proposal for studying meritocracy {-#instrumentprop}
Based on the previous assumptions and limitations identified in the empirical study of meritocracy, we propose a conceptual and measurement framework with the following characteristics:
- _Multidimensionality_, incorporating previous distinctions between preferences and perceptions, as well as between meritocratic and non-meritocratic aspects.
- Multiple indicators for each dimension, in order to _account for measurement error_ in a confirmatory factor analysis context.
- Based on _previous indicators_ as much as possible, for the sake of keeping comparability between studies.
- _Brief_, as to be used in regular public opinion surveys. In this respect, it differs from the proposal of "Preference for the Merit Principle Scale" [@davey_preference_1999], as they use 15 items for just one dimension (aside from the problem of reverse-coding non-meritocratic items).
The proposed conceptual and measurement framework is depicted in Figure \@ref(fig:merit-model):
```{r merit-model, echo=FALSE, fig.cap = "Conceptual Model of perception and preferences for meritocracy and non-meritocracy", fig.align='center'}
knitr::include_graphics("input/images/Fig1.generalf.png")
```
The columns "Perceptions" and "Preferences" represent the distinction between these two concepts, usually confused under the label "beliefs" [@castillo_meritocracia_2019]. Perceptions refer to the extent to which people observe that meritocracy functions or apply in their society, which relates to items such as "Hard work is important to get ahead in society". Preferences refer to normative expectations that are usually linked to a "should" expression (e.g. whether hard work should be related to payment). The rows in Figure \@ref(fig:merit-model) consider the distinction between meritocratic and non-meritocratic dimensions [@reynolds_perceptions_2014], usually treated as different ends of the same continuum in previous research. Non-meritocratic elements refer to the use of resources such as personal contacts or family advantages to getting ahead in life.
# Methodology
```{r message=FALSE, warning=FALSE, include=FALSE, echo=FALSE}
#RUN THIS BEFORE THE ANALYSIS
pacman::p_load(knitr)
table_format = if(is_html_output()) {
"html"
} else if(is_latex_output()) {
"latex"
}
table_format2 = if(is_html_output()) {
T
} else if(is_latex_output()) {
F
}
```
The analysis is organized into three studies. Study 1 serves as a background to our instrument proposal by attempting to operationalize the meritocracy dimensions with available secondary data from the inequality module of the International Social Survey Programme (ISSP). Although we are aware that the available indicators in this dataset do not allow a precise operationalization of the conceptual model, we know that it is the most widely used data in comparative meritocracy studies (as well as overall subjective inequality) and therefore it is certainly useful to look at its potentials and limitations to this regard. Study 2 is the core of this paper and consists of the proposal of a new scale for measuring meritocratic perceptions and preferences. Finally, in Study 3 we perform an additional validity analysis of the meritocracy scale.
# Study 1: Measuring meritocracy with international secondary data
## Data
The data corresponds to the last available wave of the social inequality module from the International Social Survey Programme (ISSP), which is the most specialized international comparative survey in perceptions, attitudes, and beliefs about inequality-related issues. This wave corresponds to the year 2009 and covers attitudes towards a series of topics dealing with social inequality across 41 countries and 56021 individuals. Although there is data available from this module for previous waves (1987, 1992, and 1999), unfortunately, there are several variables that are important for this research which were not included, particularly in 1987 and 1999, the reason why we only use the 2009 wave (during the development of this research the 2019 wave became available, but so far only with a restricted set of countries).
## Variables
There are a series of indicators in the ISSP survey that in the following we attempt to classify in our meritocracy conceptual scheme, as presented below in Table \@ref(tab:table-issp):
```{r table-issp, echo=FALSE}
if (!require("pacman")) install.packages("pacman")
# remotes::install_github('haozhu233/kableExtra@a6af5c0') # for problems with collapse_rows()
pacman::p_load(knitr, kableExtra, dplyr)
table_format = if(knitr::is_html_output()) {
"html"
} else if(knitr::is_latex_output()) {
"latex"
}
tableissp <- read.csv(file = "input/tables/table-issp.csv",header = 1,sep = ";",encoding = "UTF-8") # call file generated externally for the table
cnames <- c("Component", "Dimensions","Item")
cap <- "Items of the ISSP meritocratic perceptions and preferences measures"
knitr::kable(tableissp, table_format, booktabs = T, linesep = "",col.names = cnames, caption = cap) %>%
kableExtra::kable_styling(
full_width = F,
latex_options = c("hold_position"),
position = "center",
font_size = 10,
bootstrap_options=c("striped", "bordered")) %>%
kableExtra::column_spec(column = 1, width = "2cm", ) %>%
kableExtra::column_spec(column = 2,width = "5cm") %>%
kableExtra::column_spec(column = 3,width = "8cm") %>%
kableExtra::collapse_rows(columns = 1:2,valign = "middle")
```
- _Perception of meritocracy/non-meritocracy_: for operationalizing perceptions the closest set of ISSP's indicators comes from the question asking about perceptions for opportunities to get ahead, which are usually considered as "meritocratic beliefs" in previous research. The general heading of the battery is: _"To begin we have some questions about opportunities for getting ahead. Please tick one box for each of these to show how important you think it is for getting ahead in life."_ This is followed by a list of statements to be rated from 1 to 5: essential, very important, fairly important, not very important, not important at all.
The classification of the items is based on criteria of internal motivation (meritocratic) and structural constraints (non-meritocratic). There were two items from the battery that were excluded from the analysis as they would not fit into the classification. The first one was "having good education yourself", since it was not clear whether this is could be due to individual motivation or system opportunities, and the second was "giving bribes", as introduced elements of criminality that were beyond a non-meritocratic perception.
- _Preferences for meritocracy-non meritocracy_: for the operationalization of normative preferences we used a list of items related to reasons for pay battery. The ISSP question was: _In deciding how much people ought to earn, how important should each of these things be, in your opinion_, rated in the same _essential-non important at all_ scale (1 to 5) as the questions for meritocratic perceptions.
## Methods
The estimation was performed using Confirmatory Factor Analysis (CFA). CFA was conducted using the `lavaan` R package (version 0.6-3; @rosseel_lavaan_2012), with diagonally weighted least squares (DWLS) estimation due to the items' ordinal level of measurement [@kline_principles_2016; @rosseel_lavaan_2012]. As recommended by @brown_confirmatory_2015, we assessed model fit by jointly considering the comparative fit index and Tucker-Lewis Index (CFI and TLI; acceptable fit > 0.95), Root of the average squared residual approximation (RMSEA; acceptable fit < 0.08), Chi-square: (p-value; acceptable fit > 0.05, and Chi-square ratio > 3).
## Results
### Descriptive analyses
Figure \@ref(fig:likert-issp) shows the distribution of responses across the selected items in their corresponding dimensions. On the one side, we see that there is a high degree of importance attributed to factors such as hard work and ambition in the process of getting ahead, concentrating 94.9% and 92.8% in the fairly important to essential categories. By contrast, the perception of non-meritocratic aspects is rated lower than the meritocratic ones, particularly for gender, race, and political connections. Regarding normative preferences, we observe that the meritocratic ones are deemed as important (from fairly to essential) for nearly the whole sample, support that decreases slightly for the non-meritocratic ones. Still, we have to consider that the preferences for non-meritocratic aspects, in this case, refer to the distributive principle of need rather than personal background (as in the perceptions of non-meritocracy), which certainly is one of the limitations of this set of items for the operationalization of the proposed conceptual framework with this dataset.
```{r build-likert}
load(file = "input/data/proc/data_s1.RData")
if (!require("pacman")) install.packages("pacman")
pacman::p_load(dplyr,sjPlot, ggplot2, sjlabelled,sjmisc, ggpubr)
likert_issp<- data_s1 %>%
dplyr::select(hwork,ambition,wealthy,pareduc,
race,gender,people,polcone,
welljob,hardjob,family,child) %>% na.omit() #Subset variables
# Set labels for each variable
likert_issp <- sjlabelled::set_label(likert_issp,
label = c("Hard work",
"Having ambition",
"Wealthy family",
"Educated parents",
"Race",
"Gender",
"Knowing people",
"Political connections",
"Well job",
"Hard job",
"Support family",
"Has children"))
#Reverse coding (ONLY) for plot
likert_issp <- sjmisc::rec(likert_issp, rec="rev", append=FALSE)
#Set value labels for plot
likert_issp <-
sjlabelled::set_labels(likert_issp,
labels = c("Essential","Very important","Fairly important",
"Not very important","Not important at all"))
# Declare ggplot2 features
ggplot2::theme_set(ggplot2::theme(panel.background = ggplot2::element_rect(fill = "gray85",
colour = "gray85"),
panel.border = ggplot2::element_blank(),
axis.text.y = ggplot2::element_text(size = 13,
hjust = 1),
title = ggplot2::element_text(size = 13,
face = "bold"),
legend.text = ggplot2::element_text(size = 12),
plot.caption = ggplot2::element_text(size = 10,
face = "plain",
hjust = 1)))
#Plot 1: Perception meritocratic
p1<- likert_issp %>%
dplyr::select(hwork_r:ambition_r) %>%
sjPlot::plot_likert(geom.colors = "PuBu",
grid.range = c (1.2 , 1.2),
title = "a. Perception meritocratic",
geom.size = c(0.62),
catcount = 5,
expand.grid = T,
values = "sum.outside",
reverse.colors = T,
reverse.scale = F,
show.n = FALSE) +
ggplot2::theme(legend.position = "none")
#Plot 2: Perception Non-meritocratic
p2<-likert_issp %>%
dplyr::select(wealthy_r:polcone_r) %>%
sjPlot::plot_likert(geom.colors = "PuBu",
grid.range = c (1.2 , 1.2),
title = "b. Perception Non-meritocratic",
geom.size = c(0.9),
catcount = 5,
expand.grid = T,
values = "sum.outside",
reverse.colors = T,
reverse.scale = F,
show.n = FALSE) +
ggplot2::theme(legend.position = "none")
#Plot 3: Preference meritocratic
p3<-likert_issp %>%
dplyr::select(welljob_r:hardjob_r) %>%
sjPlot::plot_likert(geom.colors = "PuBu",
grid.range = c (1.2 , 1.2),
title = "c. Preference meritocratic",
geom.size = c(0.62),
catcount = 5,
expand.grid = T,
values = "sum.outside",
reverse.colors = T,
reverse.scale = F,
show.n = FALSE) +
ggplot2::theme(legend.position = "none")
#Plot 4: Preference Non-meritocratic
p4<-likert_issp %>%
dplyr::select(family_r:child_r) %>%
sjPlot::plot_likert(geom.colors = "PuBu",
grid.range = c (1.2 , 1.2),
title = "d. Preference Non-meritocratic",
geom.size = c(0.62),
catcount = 5,
expand.grid = T,
values = "sum.outside",
reverse.colors = T,
reverse.scale = F,
show.n = FALSE) +
ggplot2::theme(legend.position = "none")
#Legend: Extract legend for the final plot using ggpubr
leg<- ggpubr::as_ggplot(
ggpubr::get_legend(
dplyr::select(likert_issp, family_r:child_r) %>%
sjPlot::plot_likert(geom.colors = "PuBu", catcount = 5) +
ggplot2::scale_fill_brewer(
breaks = c(5:1),
direction = -1,
labels = c("Not important at all","Not very important","Fairly important",
"Very important","Essential")) +
ggplot2::theme(legend.position = "bottom")
)
)
```
```{r likert-issp,fig.height=11,fig.width=11,fig.cap="Distribution of responses in the ISSP meritocracy items", out.width='80%'}
# dev.copy(png,'output/images/Fig2.plotlikert-study1.png', width = 800, height = 600) # save image
if (!require("pacman")) install.packages("pacman")
pacman::p_load(cowplot, dplyr)
#Final plot
cowplot::add_sub(
cowplot::plot_grid(p1,p2,p3,p4,leg, #plot 1,2,3,4 and legend (bottom)
align = "hv",
axis = "a",
nrow = 5, #5 plots
ncol = 1, #1 column
rel_heights = c(1,2,1,1,0.25) #fig size within plot
),
label = paste0(
"Source: Authors calculation based on International Social Survey Programme - Social Inequality 2009",
" (n=",dim(likert_issp)[1],")"
), # Caption: source and sample size
size = 10, # Caption font size
hjust = 0.25# Caption align
) %>%
cowplot::ggdraw()
# dev.off()
```
In terms of the association between the indicators, Figure \@ref(fig:corr-issp) shows the polychoric correlation matrix. Firstly, we observe in general that the moderate to high associations are between the pairs of items representing each of the dimensions as described in \@ref(tab:table-issp). The exception here is the dimension of non-meritocratic perception, in which there are six items that appear mostly associated by pairs according to their specific topics (family background, personal background, and connections). Still, between this same set of items, there are moderate correlations (around 0.3) which could anticipate a single latent factor underlying non-meritocratic perception and that is tested next through confirmatory factor analysis.
```{r corr-issp,fig.cap = "Perceptions and preferences for ISSP meritocracy items' polychoric correlations", fig.align='center',fig.height=6,fig.width=8}
# dev.copy(png,'output/images/Fig3.plotcor-study1.png', width = 800, height = 600) # save image
load(file = "input/data/proc/data_s1.RData")
if (!require("pacman")) install.packages("pacman")
pacman::p_load(dplyr, corrplot, lavaan)
# create polychoric correlation matrix
cor_issp<-
data_s1 %>%
dplyr::select(hwork,ambition,wealthy,pareduc,
race,gender,people,polcone,
welljob,hardjob,family,child) %>%
lavaan::lavCor(., ordered=names(.))
diag(cor_issp) = NA #set diagonal values to NA
# Set Row names of the matrix
rownames(cor_issp) <- c("A. Hard work",
"B. Having ambition",
"C. Wealthy family",
"D. Educated parents",
"E. Race",
"F. Gender",
"G. Knowing people",
"H. Political connections",
"I. Well job",
"J. Hard job",
"K. Support family",
"L. Has children")
#set Column names of the matrix
colnames(cor_issp) <-c("(A)", "(B)","(C)","(D)","(E)","(F)","(G)",
"(H)", "(I)","(J)","(K)","(L)")
#Plot the matrix using corrplot
corrplot::corrplot(cor_issp,
method = "color",
addCoef.col = "#000390",
type = "upper",
tl.col = "black",
col=colorRampPalette(c("white","#0068DC"))(12),
bg = "white",
na.label = "-")
# dev.off()
```
### Confirmatory Factor Analysis
Table \@ref(tab:sum-fit-issp) shows the results of the estimation of two confirmatory models. The first one (First Order) corresponds to a model that estimate four factors, each for one of the dimensions presented in \@ref(tab:table-issp), showing only regular fit indicators (CFI=0.959, TLI=0.944, RMSEA=0.098, $\chi^2$(df=48)= 21308.535; more detail in Table \@ref(tab:tb-perpref1)). Further analysis showed that the sources for poor fit were mostly related to the items of the non-meritocratic perceptions, which as mentioned above displayed correlations among them not taken into account in this model specification.
```{r sum-fit-issp}
load(file = "input/data/proc/data_s1.RData")
if (!require("pacman")) install.packages("pacman")
pacman::p_load(dplyr, kableExtra, knitr,lavaan)
table_format = if(knitr::is_html_output()) { #conditional instructions for kable
"html" #if html set "html" in format
} else if(knitr::is_latex_output()) {
"latex"#if latex set "latex" in format
}
# meassurement model: First order
cfa_perpref1 <- '
# latent variables
percmerit =~ hwork + ambition
percnmerit=~ wealthy + pareduc +race + gender +people + polcone
prefmerit =~ welljob + hardjob
prefnmerit=~ family + child
'
# Model fit: First order
fit_perpref1 <- lavaan::cfa(cfa_perpref1, data = data_s1,ordered = T)
# meassurement model: Second order
cfa_perpref2 <- '
# latent variables
percmerit =~ hwork + ambition
parents =~ wealthy + pareduc
backgrd =~ race + gender
networks=~ people + polcone
percnmerit=~ parents + backgrd + networks
prefmerit =~ welljob + hardjob
prefnmerit=~ family + child
'
# Model fit: second order
fit_perpref2 <- lavaan::cfa(cfa_perpref2, data = data_s1,ordered = T)
# extract fit indices from models and add to table
sum_fit_issp<- dplyr::bind_rows(
lavaan::fitmeasures(fit_perpref1)[c("chisq","df","cfi","tli","rmsea")],
lavaan::fitmeasures(fit_perpref2)[c("chisq","df","cfi","tli","rmsea")]
)
# Customize object
sum_fit_issp$mod <- c("First order","Second order")
sum_fit_issp$nobs <- c(lavaan::nobs(fit_perpref2),lavaan::nobs(fit_perpref2))
sum_fit_issp$est <- c("DWLS","DWLS")
sum_fit_issp <- dplyr::select(sum_fit_issp,mod,nobs,est,dplyr::everything())
colnames <- c("Model","$N$","Estimator","$\\chi^2$","df","CFI","TLI","RMSEA")
# Create table
table_issp_fits <-
knitr::kable(sum_fit_issp, format=table_format, digits=3, booktabs=T,
col.names=colnames,
caption = "Summary fit indices according to model",
escape = FALSE) %>%
kableExtra::kable_styling(font_size = 10,
full_width = F,
latex_options = "HOLD_position",
bootstrap_options=c("striped", "bordered"))
table_issp_fits
```
Attending to the sources of poor fit from the first estimated confirmatory model, we specified a second model that keeps the basic four-factor structure but generates an additional model for the non-meritocratic perceptions as depicted in \@ref(fig:meas02-issp). In this model, the pairs of items in this dimension form three latent factors which at the same time generates a second-order factor of non-meritocratic perceptions, improving the fit of the model.
```{r meas02-issp, echo=FALSE, fig.cap = "Descriptive plot", fig.align='center',fig.cap="Second-order confirmatory factor analysis model using ISSP indicators of Perceptions and Preferences for Meritocracy"}
knitr::include_graphics('output/images/Fig4.cfa_issp_study1.PNG')
```
Regarding the correlations between the factors in the Figure \@ref(fig:meas02-issp), we observe that perceptions are correlated with preferences, but more strongly for the meritocratic ($r=0.46$) than for the non-meritocratic ($r=0.27$) dimensions. Secondly, both perceptual dimensions (meritocratic and non-meritocratic) depict a moderate correlation ($r=0.30$), suggesting that they are not the opposite poles of the same continuum. Something similar occurs for the correlation between the two dimensions of preferences ($r=0.25$). From this information, we can preliminary conclude that the wide use of reverse-coding for non-meritocratic items attempting to measure meritocracy is not an adequate operationalization of the construct. All in all, despite the good fit of the second-order model there are still several limitations regarding the content of the items which we attempt to overcome next by developing and testing new scale for measuring meritocracy.
# Study 2: The Perceptions and Preferences for Meritocracy Scale
## Data
The data was obtained through an online survey which was part of a larger study on meritocracy and preferences developed in Chile in 2019, funded by the national scientific agency ANID. The questionnaire was programmed in Qualtrics and the fieldwork was conducted by an external online survey agency ([netquest.com](www.netquest.com)) between December 2019 and January 2020. The sample was selected from a non-probabilistic quota design in three large cities in Chile (Santiago, Concepción & Antofagasta). The quotas for gender, age, and educational levels were generated based on a survey by the Public Studies Center [@cep_encuesta_2019], which is a well-regarded counterpart agency of the ISSP (International Social Survey Programme) in Chile. A total sample of 2,141 people was collected, excluding those who did not sign the informed consent as well as those not answering the meritocracy response battery. There were no significant differences between our sample and the wider population for most socio-demographic characteristics, with the exception of educational level (see Table \@ref(tab:rep-samp) in Appendix). As it is often the case with online surveys, there were some limitations in achieving the quotas for lower educational levels [@zhang_quota_2018; @boas_recruiting_2020].
## Study design
### Instrument
The proposed scale of perceptions and preferences relating to meritocracy consisted of eight indicators that were grouped into the four dimensions listed earlier: Perceptions (meritocratic/non-meritocratic) and preferences (meritocratic/non-meritocratic). In order to achieve at least some comparability with previous studies, the questions were adapted from the items battery "reasons to get ahead" (ISSP/GSS), which has been widely used for operationalizing meritocracy in previous studies [@mijs_paradox_2019; @duru-bellat_who_2012; @reynolds_perceptions_2014]. The aforementioned eight items ordered according to dimensions are presented in Table \@ref(tab:table-indicadores). These eight likert-type items have five response alternatives, ranging from "Completely disagree"(1) to "Completely agree" (5).
```{r table-indicadores, echo=FALSE}
if (!require("pacman")) install.packages("pacman")
# remotes::install_github('haozhu233/kableExtra@a6af5c0') # for problems with collapse_rows()
pacman::p_load(knitr, kableExtra, dplyr)
table_format = if (knitr::is_html_output()) {
#conditional instructions for kable
"html" #if html set "html" in format
} else if (knitr::is_latex_output()) {
"latex"#if latex set "latex" in format
}
tabitems <- read.csv(file = "input/tables/table01.csv",header = 1,sep = ",",encoding = "UTF-8") # call file generated externally for the table
cnames <- c("Component", "Dimensions","Item (English)" , "Item original (Spanish)")
cap <- "Items of the perceptions and preferences for meritocracy scale."
knitr::kable(tabitems, table_format, booktabs = T, linesep = "",col.names = cnames, caption = cap) %>%
kableExtra::kable_styling(
full_width = T,
latex_options = c("hold_position"),
position = "center",
font_size = 10,
bootstrap_options=c("striped", "bordered")) %>%
kableExtra::column_spec(column = 1, width = "1.5cm", ) %>%
kableExtra::column_spec(column = 2,width = "2 cm") %>%
kableExtra::collapse_rows(columns = 1:2,valign = "middle")
```
\pagebreak
### Administration sets
With the objective of evaluating the effect of indicator ordering in the responses, three different versions of items' order were designed and randomly assigned to the respondents, as depicted in Figure \@ref(fig:appmod). The scale was presented to the first group (_n = 712_) in the order that appears in Table \@ref(tab:table-indicadores) according to perceptions and preferences. For the second group (_n = 717_), the order was reorganized according to perceptions and preferences over the same topic, e.g. for the topic of hard work, the item about perception was followed by the item about preference and the same for the rest of the topics. Finally, for the third group (_n = 712_), the items were presented as completely randomized.
```{r appmod, echo=FALSE, fig.cap = "Survey flow", fig.align='center'}
knitr::include_graphics('output/images/Fig5.app_mod.png')
```
## Methods
To test the scale's underlying constructs, we employed confirmatory factor analysis models (CFA). The models estimated one factor for each of the four proposed dimensions presented in Table \@ref(tab:table-indicadores). As in Study 1, CFA was conducted using the `lavaan` R package (version 0.6-3; @rosseel_lavaan_2012), with diagonally weighted least squares (DWLS) estimation due to the items' ordinal level of measurement [@kline_principles_2016; @rosseel_lavaan_2012]. The fit indexes and cut-off criteria were the same as the ones used in Study 1.
A pre-registration was made in the OSF platform, available at the following link: [https://osf.io/z45y2](https://osf.io/z45y2). Included in this pre-registration are the hypotheses regarding the four-dimensional conceptual model underlying the scale, the variable measurement levels, the statistical tests to be performed with their respective evaluation parameters, and other important aspects of the research design.
## Results
### Descriptive analyses
The graphs presented in Figure \@ref(fig:plotlikert) display disaggregated and comparable information of the different response categories for each item. As it can be observed, in general, there is more agreement in the perception of non-meritocratic items than in meritocratic ones, while in the case of preferences the opposite occurs. As far as preferences are concerned, the preponderant role of effort over talent as a criterion of meritocratic preference is noteworthy. All in all the descriptive results tend to show a sort of critical view of meritocracy, perceiving the operation of non-meritocratic aspects over meritocratic ones, whereas in the preferences the opposite occurs.
```{r produce-likert_s2, include=FALSE}
if (!require("pacman")) install.packages("pacman")
pacman::p_load(dplyr,sjPlot, ggplot2, sjlabelled,sjmisc, ggpubr)
load(file = "input/data/proc/data_s2.RData")
names(data_s2)
dat_likert_s2 <- data_s2 %>% dplyr::select(!group) # exclude group variable
dat_likert_s2 <- sjmisc::rec(dat_likert_s2, rec="rev", append=FALSE)
names(dat_likert_s2) # reverse coding for likert graph
table(data_s2$perc_effort)
table(dat_likert_s2$perc_effort_r) # check ok.
# update.packages("sjPlot") # please install version 2.8.9 or above
ggplot2::theme_set(ggplot2::theme(panel.background = ggplot2::element_rect(fill = "gray85",
colour = "gray85"),
panel.border = ggplot2::element_blank(),
axis.text.y = ggplot2::element_text(size = 13,
hjust = 1),
title = ggplot2::element_text(size = 13,
face = "bold"),
legend.text = ggplot2::element_text(size = 12),
plot.caption = ggplot2::element_text(size = 10,
face = "plain",
hjust = 1)))
#Plot 1: Perception
p1<-
dplyr::select(dat_likert_s2,perc_effort_r:perc_netw_r) %>%
sjPlot::plot_likert(geom.colors = "PuBu",
title = c("a. Perceptions"),
geom.size = 0.8,
axis.labels = c("Effort", "Talent", "Rich Parents", "Contacts"),
catcount = 4,
cat.neutral = 3,
grid.range = c (1.2 , 1.2),
values = "sum.outside",
reverse.colors = T,
reverse.scale = F,
show.n = FALSE) +
ggplot2::theme(legend.position = "none")
#Plot 2: Preferences
p2<-
dplyr::select(dat_likert_s2,pref_effort_r:pref_netw_r) %>%
sjPlot::plot_likert(geom.colors = "PuBu",
title = c("b. Preferences"),
geom.size = 0.8,
axis.labels = c("Effort", "Talent", "Rich Parents", "Contacts"),
catcount = 4,
cat.neutral = 3,
grid.range = c (1.2 , 1.2),
values = "sum.outside",
reverse.colors = T,
reverse.scale = F,
show.n = FALSE) +
ggplot2::theme(legend.position = "none")
#Legend: Extract legend for the final plot using ggpubr
leg<- ggpubr::as_ggplot(
ggpubr::get_legend(
dplyr::select(dat_likert_s2,pref_effort_r:pref_netw_r) %>%
sjPlot::plot_likert(geom.colors = "PuBu",
catcount = 4,
cat.neutral = 3) +
ggplot2::theme(legend.position = "bottom") +
ggplot2::scale_fill_manual(
values = c("#b3b3b3ff", "#f1eef6ff", "#bdc9e1ff","#74a9cfff","#0570b0ff"),
breaks=c("neutral",4,3,2,1),
labels=c("Neither agree nor disagree","Strongly disagree","Disagree",
"Agree","Totally agree")
)
)
)
```
```{r plotlikert, echo=FALSE, fig.align='center', fig.cap="Distribution of responses in the Merit Scale items", fig.height=8, fig.width=11}
# dev.copy(png,'output/images/Fig6.plotlikert-study2.png', width = 820, height = 600)
if (!require("pacman")) install.packages("pacman")
pacman::p_load(cowplot)
#Final plot
cowplot::add_sub(
cowplot::plot_grid(p1,p2,leg, #plot 1,2 and legend (bottom)
align = "hv",
axis = "a",
nrow = 3, #2 plots
ncol = 1, #1 column
rel_heights = c(1,1,0.25) #fig size within plot
),
label = paste0("Source: Authors calculations based on Study 2 sample"," (n=",dim(na.omit(dat_likert_s2))[1],")"
), # Caption: source and sample size
size = 12, # Caption font size
hjust = -0.15# Caption align
) %>%
cowplot::ggdraw()
# dev.off()
```
Attending now to the association among the scale items, Figure \@ref(fig:corpoly) shows the items' polychoric correlations. There are three main aspects to highlight from this correlation matrix. Firstly, as expected the largest correlations are between indicators that correspond to the same factors behind the conceptual model (e.g., perception of meritocracy by effort and by talent, $r=0.52$). Secondly, among this correlations the highest are those between the non-meritocratic dimension but in perceptions ($r=0.73$) and preferences ($r=0.61$). Thirdly, both items for meritocratic preferences (E and F) are the ones that mostly correlate with the rest of the perceptual items, showing medium to high correlations. This is noteworthy because it indicates that the perception of non-meritocracy would be related to larger meritocratic preferences. Finally, and similar to what was found in Study 1 with ISSP data, we observe that there are no considerable negative correlations between meritocratic and non-meritocratic aspects, undermining the assumptions of previous studies that suggested that these dimensions would be the opposite poles of one same continuum [@reynolds_perceptions_2014].
```{r corpoly, echo=FALSE, fig.cap = "Perceptions and preferences for meritcoracy items' polychoric correlations", fig.align='center'}
# dev.copy(png,'output/images/Fig7.plotcor-study2.png',width = 800, height = 600) # save image
if (!require("pacman")) install.packages("pacman")
load(file = "input/data/proc/data_s2.RData")
pacman::p_load(dplyr, corrplot, lavaan)
# generate polychoric matrix
cor_s2<- data_s2 %>%
dplyr::select(perc_effort,perc_talent,perc_wpart,perc_netw,pref_effort,pref_talent,pref_wpart,pref_netw) %>%
lavaan::lavCor(., ordered=names(.))
diag(cor_s2) = NA
rownames(cor_s2) <-c(
"A. Perception Effort",
"B. Perception Talent",
"C. Perception Rich parents",
"D. Perception Contacts",
"E. Preferences Effort",
"F. Preferences Talent",
"G. Preferences Rich parents",
"H. Preferences Contacts")
colnames(cor_s2) <-c("(A)", "(B)","(C)","(D)","(E)","(F)","(G)", "(H)")
corrplot::corrplot(cor_s2,
method = "color",
addCoef.col = "#000390",
type = "upper",
tl.col = "black",
col=colorRampPalette(c("white","#0068DC"))(8),
bg = "white",
na.label = "-")
# dev.off()
```
### Confirmatory Factor Analysis
The present section describes the results of the confirmatory factor analysis estimation. The model estimates four latent factors: perception meritocratic, perception non-meritocratic, preferences meritocratic, and preferences non-meritocratic. Each factor is estimated based on two items of the scale as detailed in Table \@ref(tab:table-indicadores).
The first step in the analysis consists of comparing the model fit indicators for the three versions of the scale that were randomly assigned to the participants: order according to perceptions/preferences, order according to topics, and random order (see Figure \@ref(fig:appmod)).
```{r model-generation-cfa}
# Libraries & data
if (!require("pacman")) install.packages("pacman")
pacman::p_load(lavaan)
load(file = "input/data/proc/data_s2.RData")
# names(data_s2)
# model
model_cfa <- '
perc_merit =~ perc_effort+perc_talent
perc_nmerit=~perc_wpart +perc_netw
pref_merit =~ pref_effort+pref_talent
pref_nmerit=~pref_wpart +pref_netw
'
# estimation for each order set
fit_cfa1 <- lavaan::cfa(model_cfa, data = data_s2[data_s2$group == 1,], ordered = TRUE, std.lv=FALSE)
fit_cfa2 <- lavaan::cfa(model_cfa, data = data_s2[data_s2$group == 2,], ordered = TRUE, std.lv=FALSE)
fit_cfa3 <- lavaan::cfa(model_cfa, data = data_s2[data_s2$group == 3,], ordered = TRUE, std.lv=FALSE)
```
```{r table-cfafits, echo=FALSE}
if (!require("pacman")) install.packages("pacman")
pacman::p_load(dplyr, kableExtra, knitr)
table_format = if(knitr::is_html_output()) { #conditional instructions for kable
"html" #if html set "html" in format
} else if(knitr::is_latex_output()) {
"latex"#if latex set "latex" in format
}
# extract fit indices from models and add to table
sum_fit<- dplyr::bind_rows(lavaan::fitmeasures(fit_cfa1)[c("chisq","df","cfi","tli","rmsea")],
lavaan::fitmeasures(fit_cfa2)[c("chisq","df","cfi","tli","rmsea")],
lavaan::fitmeasures(fit_cfa3)[c("chisq","df","cfi","tli","rmsea")])
# Customize object
sum_fit$mod <- c("Version 1","Version 2","Version 3")
sum_fit$nobs <- c(nobs(fit_cfa1),nobs(fit_cfa2),nobs(fit_cfa3))
sum_fit$est <- c("DWLS","DWLS","DWLS")
sum_fit <- dplyr::select(sum_fit,mod,nobs,est,everything())
colnames <- c("Model","$N$","Estimator","$\\chi^2$","df","CFI","TLI","RMSEA")
# Create table
table_cfa_fits <-kable(sum_fit, format=table_format,
digits=3,
booktabs=T,
col.names=colnames,
caption = "Summary fit indices according to order versions",
escape = FALSE) %>%
kable_styling(full_width = F,
font_size = 10,
latex_options = "HOLD_position",
bootstrap_options=c("striped", "bordered"))
table_cfa_fits
```
Table \@ref(tab:table-cfafits) shows the fit indicators of the models estimated for each of the three versions of the items' order described in the methodology. Regardless of the version, all models obtained adequate fit indicators, with CFI's above 0.95 and RMSEA's below 0.08. However, none of the models achieved a non-significant chi-square, something expected in large samples as the one used here. The first version order (perceptions-preferences) was the one obtaining best fit (CFI=0.993, TLI=0.995, RMSEA=0.034, $\chi2$(df=14)=42.276), whereas version 2 with the fixed order according to merit/non-merit items shows the comparatively worst indicators. The CFA fit indices for the completely randomized items' order (Model 3) it keeps all the indicators within the acceptable cut-off criteria and besides it controls for possible order effects in the administration of the instrument. The model and parameter estimates for this version are depicted in Figure \@ref(fig:meas02):
```{r meas02, echo=FALSE, fig.cap = "Confirmatory factor analysis of the Perceptions and Preferences for Meritocracy Scale", fig.align='center'}
# estimation for diagram: summary(fit_cfa3, standardized = TRUE, fit.measures=TRUE)
knitr::include_graphics('output/images/Fig8.cfa_randomized_study2.png')
```
Attending to the correlations between the latent variables as depicted in Figure \@ref(fig:meas02), meritocratic preferences are moderate to highly correlated with perceptions, both meritocratic ($r=0.457$) and non-meritocratic ($r=0.500$). The correlation between both types of perceptions ($r=-0.044$) and both types preferences ($r=0.185$) are low, as well as between non-meritocratic preferences and perceptions ($r=-0.059$). This last finding gives further evidence regarding the lack of unidimensionality of meritocratic and non-meritocratic aspects as assumed by previous studies.
# Study 3: Additional validity analyses
We performed two further analyses in order to add evidence regarding the quality of the scale. Firstly we analyzed the convergent validity by exploring the association of the merit scale with related concepts and its correspondent measurements. Secondly, we test the internal consistency of the measurement model behind the scale comparing it with a different sample through measurement invariance procedures.
## Convergent validity
### Data
For this analysis, we examined data from the last of the three waves of the online panel survey used in Study 2. This wave included additional measures that allow testing the correlations of the merit scale with some related constructs as opportunity beliefs and personal wherewithal. After a listwise deletion of missing cases in socio-demographic information, a total of 1422 individuals took part in the third wave: 668 (46.97%) women and 754 (53.03%) men. The ages of 50.57% of them are 45 years or older, and 36.28% held a tertiary degree.
### Variables
The following scales were included for testing their correlations with the 8-item meritocracy scale:
- Opportunity beliefs: We used two items of the social inequality module of the International Social Survey Programme. Studies use generally both indicators to measure meritocratic and non-meritocratic beliefs [@mccall_exposure_2017; @mijs_paradox_2019]. One item measures the importance of individual factors in determining life outcomes by asking for the importance of hard work for getting ahead in life (M=3.76, SD=0.93). The second item asks for the importance of coming from a wealthy family and captures the importance of structural factors in getting ahead (M=2.75, SD=1.27). Participants responded to each item using a 1 (not important at all) to 5 (essential) response scale. We call the first item _hard work_ and the second one _social origin_.
- Personal wherewithal: the questionnaire included The Neoliberal Beliefs Inventory (NBI), which considers four factors: Government Interference preferences, Competition preferences, System Inequality perception, and Personal Wherewithal [@bay-cheng_tracking_2015]. We used the factor _personal wherewithal_ that reflects meritocracy beliefs in terms of the importance of personal attributes as strength and skills to yield success. The construct consists of 8 items (e.g., "Any goal can be achieved with enough hard work and talent", "I've benefited from working hard, so there's no reason others can't", "Anyone who is willing to work hard can be successful in Chile"). Participants answered the items using a 1 (totally disagree) to 6 (totally agree) scale. We simply computed mean scores, with higher scores indicating stronger support for meritocracy (M=3.32, SD=0.88, $\alpha$ = 0.89).
Both instruments cover mainly the perceptual side of the concept. Therefore, in general, we expect a larger correlation with meritocratic perceptions than with preferences. In the case of opportunity beliefs, the hard work item should correlate positively with meritocratic perception whereas the importance of coming from a wealthy family is expected to correlate positively with non-meritocratic perceptions. Regarding the second instrument of personal wherewithal, we also anticipate a positive correlation with meritocratic perception and low to null correlations with the other dimensions of the merit scale.
### Results
We used polychoric correlations to evaluate relationships of meritocratic and non-meritocratic preferences and perceptions with the items of the opportunity beliefs battery. For personal wherewithal, we examined Pearson correlations.
Table \@ref(tab:val-conv) shows the polychoric and Pearson correlations between our meritocracy scale and common measures of meritocracy. As we expected, preferences show very weak correlations. Findings also indicate that correlations of perceptions with opportunity beliefs are consistent with our expectations. The item for social origin shows a positive and moderate association with unmeritocratic perception ($r=0.361$), and a negative and low correlation with meritocratic perception ($r=-0.186$). Regarding the item of hard work, the correlation with meritocratic perception is positive but weak ($r=0.201$). One explanation for this result is that the support for hard work is very high among respondents and therefore with low variability, as only 8.6 percent indicates _not very important_ or _not important at all_.
```{r val-conv}
if (!require("pacman")) install.packages("pacman")
pacman::p_load(kableExtra, polycor)
table_format = if(knitr::is_html_output()) { #conditional instructions for kable
"html" #if html set "html" in format
} else if(knitr::is_latex_output()) {
"latex"#if latex set "latex" in format
}
load(file="input/data/proc/data_s3_conv.RData")
pl1 <- polycor::polyserial(data_s3_conv$perc_merit,data_s3_conv$get_ah_1)
pl2 <- polycor::polyserial(data_s3_conv$pref_merit,data_s3_conv$get_ah_1)
pl3 <- polycor::polyserial(data_s3_conv$perc_nmerit,data_s3_conv$get_ah_1)
pl4 <- polycor::polyserial(data_s3_conv$pref_nmerit,data_s3_conv$get_ah_1)
valores1 <- round(c(pl1,pl2,pl3,pl4),4)
pl1b <- polycor::polyserial(data_s3_conv$perc_merit,data_s3_conv$get_ah_5)
pl2b <- polycor::polyserial(data_s3_conv$pref_merit,data_s3_conv$get_ah_5)
pl3b <- polycor::polyserial(data_s3_conv$perc_nmerit,data_s3_conv$get_ah_5)
pl4b <- polycor::polyserial(data_s3_conv$pref_nmerit,data_s3_conv$get_ah_5)
valores2 <- round(c(pl1b,pl2b,pl3b,pl4b),4)
pl1c <- cor(data_s3_conv$perc_merit,data_s3_conv$nbmerit)
pl2c <- cor(data_s3_conv$pref_merit,data_s3_conv$nbmerit)
pl3c <- cor(data_s3_conv$perc_nmerit,data_s3_conv$nbmerit)
pl4c <- cor(data_s3_conv$pref_nmerit,data_s3_conv$nbmerit)
valores3 <- round(c(pl1c,pl2c,pl3c,pl4c),4)
variables= c("Meritocratic Perception", "Meritocratic Preferences","Non-meritocratic Perception","Non-meritocratic Preferences")
table01 <- cbind(variables, valores1, valores2, valores3)
knitr::kable(table01,
col.names = c("Merit-Scale","Social Origin ", "Hard Work " , "Wherewithal"),
linesep = "",
format = table_format,
booktabs=T,
digits = 3,
caption = c("Polyserial and Pearson correlation whit other merit scales")) %>%
kableExtra::kable_styling(
full_width = F,
position = "center",
font_size = 10,
bootstrap_options = c("striped", "bordered")) %>%
kableExtra::column_spec(column = 1, width = "4.5 cm")
```
The measure of NBI for _personal wherewithal_ also provides evidence for the convergent validity of the merit scale. Results indicate a positive correlation of this measure with meritocratic perception ($r=0.406$), suggesting that both variables capture similar concepts. The NBI's factor depicts a positive association with unmeritocratic preference ($r=0.225$). This finding is consistent with the literature, in as much as the belief for meritocracy is associated with the justification of inequality [@mccall_exposure_2017; @madeira_primes_2019]. Furthermore, results of our confirmatory factor analysis indicate that meritocratic perceptions and unmeritocratic preferences show a positive and weak correlation.
## Measurement invariance
The modeling for invariance testing has been gaining more relevance in sociological survey studies, mainly due to the interest in the validity of measurement scales in comparative studies in various social and cultural contexts [@davidov_measurement_2014]. In this section we will use an analysis of invariance between groups, where the proposed factorial structure is expected to be independent of belonging to the sample corresponding to the original study, comparing it with another more recent study available and where the meritocracy scale was also incorporated.
The invariance measurement procedure consists of a series of nested models to which restrictions are progressively incorporated on the parameters of the measurement model. The literature generally suggests that this modeling should be done through four levels or types of progressive restriction [@milfont_testing_2010; @millsap_statistical_2011; @vandeschoot_checklist_2012]:
1. **Configural:** the model is estimated only indicating the factorial structure used in the CFA.
2. **Weak:** an equality restriction is applied to the factor loadings in the different groups, that is, the loadings are forced to be identical in both measurements.
3. **Strong:** equality restrictions are added to the intercepts of each indicator.
4. **Strict:** equality restrictions are added to the error variances of each indicator.
### Data
For testing the invariance we compared the data described previously with a new data source coming from an online survey carried out during the first half of 2020. The characteristics of this sample in terms of application and coverage are equivalent to those of the previous study. The final sample obtained contains 1,242 cases, where 605 (48.71%) are women and 637 (51.28%) are men. 48.84% of them are 45 years of age or older, and 33.97% have tertiary education or higher.
### Variables
The items of the meritocracy scale were identical to the original. The items were administrated in a randomized order (which corresponds to the application modality of Group 3 as showed in Figure \@ref(fig:appmod)).
### Results
Table \@ref(tab:fcloads-inv) in the Appendix shows the results of the CFA estimation of the meritocracy scale in this new sample. As observed, the loadings and the fit indices show similar results as the ones presented for the original study above, which gives a first base from which to start the invariance analysis.
The first step for invariance testing is the estimation of the configural model, which serves as the baseline for further comparison and is expected to adequately meet the global fit criteria of a measurement model. Although the chi-square statistic is used as a global measure of fit, since its sensitivity to sample size it is recommended to use three additional fit indices: Comparative Fit Index (CFI), which should have a value greater than 0.95; Root Mean Square Error Approximation (RMSEA), which must be lower than 0.06; and the Standardized Root Mean Square Residuals (SRMR) which must be less than 0.08 [@vandeschoot_checklist_2012]. Besides, the literature on measurement invariance suggests some complementary approaches for the evaluation of the fit, from which we will consider the incremental adjustment of the fit indexes [@cheung_evaluating_2002; @milfont_testing_2010; @dimitrov_testing_2010] and the ANOVA test for means comparison in nested models [@newsom_longitudinal_2015].
```{r invargroup, echo=FALSE}
if (!require("pacman")) install.packages("pacman")
#---Load packages and data -------------------------------------#
pacman::p_load(dplyr,lavaan,semTools,knitr,kableExtra,stats,gtools)
options(knitr.kable.NA = '')
load(file = "input/data/proc/data_s3_inv.RData")
pov01 <- data_s3_inv %>% dplyr::filter(dataset=="pvw01")
fs01 <- data_s3_inv %>% dplyr::filter(dataset=="fsw02")
#-----Meassurement model--------------------------------------#
model01 <- '
perc_merit =~ perc_effort + perc_talent
perc_nmerit =~ perc_wpart + perc_netw
pref_merit =~ pref_effort + pref_talent
pref_nmerit =~ pref_wpart + pref_netw'
#-----Invariance---------------------------------------------#
inv01<- semTools::measurementInvariance(model=model01,data=data_s3_inv,group="dataset",estimator = "ML",strict=TRUE,quiet = T)
conf <- inv01$fit.configural
weak <- inv01$fit.loadings
strong<- inv01$fit.intercepts
strict<- inv01$fit.residuals
tab01<- lavaan::anova(conf,weak,strong,strict,SB.classic=TRUE) %>%
dplyr::as_tibble() %>%
dplyr::select("Chisq","Df","chisq_diff"=`Chisq diff`,"df_diff"=`Df diff`,"pvalue"=`Pr(>Chisq)`) %>%
dplyr::mutate(stars=gtools::stars.pval(pvalue),
chisqt=paste0(round(Chisq,2)," (",Df,") "),
decision=ifelse(pvalue>0.05,yes = "Accept",no = "Reject"),
model=c("Configural","Weak","Strong","Strict"))
fit.meas<- dplyr::bind_rows(lavaan::fitmeasures(inv01$fit.configural,output ="matrix")[c("chisq","df","cfi","rmsea","rmsea.ci.lower","rmsea.ci.upper"),],
lavaan::fitmeasures(inv01$fit.loadings, output ="matrix")[c("chisq","df","cfi","rmsea","rmsea.ci.lower","rmsea.ci.upper"),],
lavaan::fitmeasures(inv01$fit.intercepts,output ="matrix")[c("chisq","df","cfi","rmsea","rmsea.ci.lower","rmsea.ci.upper"),],
lavaan::fitmeasures(inv01$fit.residuals, output ="matrix")[c("chisq","df","cfi","rmsea","rmsea.ci.lower","rmsea.ci.upper"),])
# compute differences in chisq, df, cfi and rmsea (90%, lower.ci - upper.ci )
fit.meas<- fit.meas %>%
dplyr::mutate(diff.chi2 = chisq - lag(chisq,default = dplyr::first(chisq)),
diff.df = df - lag(df, default = dplyr::first(df)),
diff.cfi = cfi - lag(cfi, default = dplyr::first(cfi)),
diff.rmsea = rmsea - lag(rmsea,default = dplyr::first(rmsea))) %>%
round(3) %>%
dplyr::mutate(rmsea.ci=paste0(rmsea," \n ", "(",rmsea.ci.lower,"-",rmsea.ci.upper,")"))
tab.inv<- dplyr::bind_cols(tab01,fit.meas) %>%
dplyr::select(model,chisqt,cfi,rmsea.ci,diff.chi2,diff.df,diff.cfi,diff.rmsea,stars,decision) %>%
dplyr::mutate(diff.chi2=paste0(diff.chi2," (",diff.df,") ",stars)) %>%
dplyr::select(model,chisqt,cfi,rmsea.ci,diff.chi2,diff.cfi,diff.rmsea,decision)
#clean values
tab.inv[tab.inv == c("0 (0) ")] <- NA
tab.inv[tab.inv == c(0)] <- NA
### Check an alternative method
configural <- lavaan::cfa(model01, data=data_s3_inv, group = "dataset", estimator="ML")
weak.invariance <- lavaan::cfa(model01, data=data_s3_inv, group = "dataset",group.equal = "loadings", estimator="ML")
strong.invariance <- lavaan::cfa(model01, data=data_s3_inv, group = "dataset",group.equal = c( "loadings", "intercepts"), estimator="ML")
strict.invariance <- lavaan::cfa(model01, data=data_s3_inv, group = "dataset",group.equal = c( "loadings", "intercepts", "residuals"), estimator="ML")
table_format = if(is_html_output()) {
"html"
} else if(is_latex_output()) {
"latex"
}
col.nam <- c("Model","$\\chi^2 (\\text{df})$","CFI","RMSEA (90 CI)",
"$\\Delta \\chi^2 (\\Delta \\text{df}$)","$\\Delta \\text{CFI}$","$\\Delta \\text{RMSEA}$","Decision")
footnote <- paste0("N = ","; Group 1, n = ",conf@Data@nobs[[1]],"; Group 2, n = ",conf@Data@nobs[[2]], ", ***p < 0.001")
knitr::kable(tab.inv, col.names = col.nam, align = "l",
booktabs=TRUE,format = table_format,escape = FALSE,
caption = "Multiple Group meassurement invariance for Perceptions and Preferences for Meritocracy") %>%
kableExtra::kable_styling(full_width = FALSE,
latex_options = "HOLD_position",
bootstrap_options=c("striped", "bordered"),
font_size = 10) %>%
kableExtra::footnote(general = footnote, footnote_as_chunk = T)
```
Table \@ref(tab:invargroup) shows the results of the measurement invariance estimation. When attending to the traditional invariance test of $\Delta \chi^2 (\Delta \text{df})$, the results support the invariance at the strong level meaning that the fit of the factor model of the merit scale is equivalent across samples when constraining factor loadings and intercepts to being equal. Such result is considered in general as evidence of invariance [@fischer_are_2011], as strict forms of measurement invariance rarely hold [@vandeschoot_checklist_2012]. Still, the comparability of latent means requires strict invariance which in this case does not hold when considering $\Delta \chi^2 (\Delta \text{df})$. Nevertheless, the criteria of $\Delta \text{CFI}$ used for comparing models is close to the rejection criteria of >.01, whereas the $\Delta \text{RMSEA}$ fulfils the requirements of being below the cut-off criteria as suggested by [@chen_sensitivity_2007]. Therefore, using this last standard, the level for strict invariance would hold for the meritocracy scale.
# Conclusions
Studies that attempt to characterize and compare societies by their support for meritocratic beliefs have used different approaches. As most studies use secondary survey data, they tend to assume that the available indicators represent an underlying meritocratic construct. A review of these studies reveals several non-tested assumptions, as well as the use of similar indicators to represent different constructs and dimensions of meritocracy. As the existence of heterogeneous approaches certainly has consequences for the advancement of the study of meritocracy, this paper presented a comprehensive conceptual framework for the empirical study of meritocracy, building upon previous research. This framework was then tested against available and new survey data.
We identified four critical aspects regarding the measurement of meritocracy in previous studies: unidimensionality, the ambiguous use of the term "beliefs", the use of non-meritocratic indicators as opposed to meritocratic indicators, and the consideration of measurement error. The proposed 8-item scale, "Perceptions and Preferences for Meritocracy", was designed and tested in order to deal with these four issues. Our results indicate that perceptions and preferences seem to be two related but different dimensions, often confounded in previous research under the label of "beliefs". Meritocratic and non-meritocratic dimensions do not appear to constitute poles of the same continuum, as some previous studies have assumed. Regarding the possible effects of the items' order in the estimation of the latent variable, we tested three different order versions and found evidence that suggests the use of the randomized version of the scale. Furthermore, we found evidence of convergent validity as well as measurement invariance that approach well the requirement of comparability between samples.
The four-dimensional conceptual framework and its operationalization in the Perceptions and Preferences for Meritocracy scale opens several avenues for future research. For instance, distinguishing perceptions from preferences will allow us to evaluate the extent to which different societies are accustomed to, or satisfied with, the perceived level of meritocracy, in terms of differences between what is perceived and what is preferred. Additionally, given that non-meritocratic factors are not necessarily related to meritocratic ones, our framework makes it possible to assess the perceived legitimacy of practices such as the use of personal contacts and their interference (or not) with meritocratic ideals in different societies. The consideration of structural factors, both individual and societal, will allow us to advance future hypotheses relating to meritocratic legitimacy to a more comprehensive level than the current one, which is based solely on meritocratic perceptions. Furthermore, the impact of different configurations of the four-dimensional framework on practices and behaviors such as corruption, civic involvement, and political alignment, is an area that requires additional research. Such future agendas could be especially relevant in times of economic crisis and growing inequalities, that could entail changes in the legitimation of the current distributive structure based on meritocratic ideals.
# Transparency statement
This research follows a series of open science guidelines as the pre-registration of Study 2 (scale development) as well as the availability of data and codes (R) in an public repository in Github. This document was generated with the R package Rmarkdown and contains the code for all the tables and figures in order to make it reproducible.
# References
<div id="refs"> </div> <!-- Although <div> is an HTML tag, this method also works for other output formats such as PDF. -->
\pagebreak
# Appendix {-}
`r if (knitr::is_latex_output()){ '\\appendix'}`
`r if (knitr::is_latex_output()){ '\\section{Appendix}'}`
**Study 1**
| | Sample | CEP |
|---------------------|:-------:|:------:|
| __Gender__ | | |
| Men | 49,82% | 50,52% |
| Women | 50.18% | 49,47% |
| __Age__ | | |
| 18 - 24 | 18,55% | 18,17% |
| 25 - 34 | 18,86% | 17,48% |
| 35 - 44 | 19.09% | 19,98% |
| 45 - 54 | 17,96% | 19,23% |
| 55 - or more | 25,54% | 25.11% |
| __Education__ | | |
| Primary or less | 2,93% | 15,88% |
| High school | 43,23% | 37,04% |
| Non university | 32,63% | 28,93% |
| university or more | 21,21% | 18,13% |
Table: `r as.character(paste("(\\#tab:rep-samp)", "Representativeness of the study 1 sample"))`.
\pagebreak
```{r tb-perpref1, echo=FALSE}
if (!require("pacman")) install.packages("pacman")
load(file = "input/data/proc/data_s1.RData")
pacman::p_load(dplyr,knitr,kableExtra)
options(knitr.kable.NA = '')
table_format = if(knitr::is_html_output()) { #conditional instructions for kable
"html" #if html set "html" in format
} else if(knitr::is_latex_output()) {
"latex"#if latex set "latex" in format
}
# First order model for Appendix
cfa_perpref1 <- '
# latent variables
percmerit =~ hwork + ambition
percnmerit=~ wealthy + pareduc +race + gender +people + polcone
prefmerit =~ welljob + hardjob
prefnmerit=~ family + child
'
# Fit First order model for Appendix
fit_perpref1 <- lavaan::cfa(cfa_perpref1, data = data_s1,
ordered = c("wealthy","pareduc","ambition","hwork",
"people","polcone","race","gender",
"respons","yeduc",
"family","child",
"welljob","hardjob"))
# Labels of First order model for Appendix
labs <- c(
"Importance: hard work",
"Importance: having ambition",
"Importance: wealthy family",
"Importance: educated parents",
"Importance: race",
"Importance: gender",
"Importance: knowing people",
"Importance: political connections",
"Reasons for pay: well job",
"Reasons for pay: hard job",
"Reasons for pay: support family",
"Reasons for pay: has children"
)