-
Notifications
You must be signed in to change notification settings - Fork 0
/
paper-blinded-RR-IJS.Rmd
1477 lines (1215 loc) · 104 KB
/
paper-blinded-RR-IJS.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: "A multidimensional approach for measuring meritocratic beliefs: Advantages, limitations and alternatives to the ISSP social inequality survey"
#css: "custom.css"
linestretch: '1.5'
link-citations: yes
# author: "Juan Carlos Castillo, Julio Iturra, Luis Maldonado, Francisco Meneses & Jorge Atria <br><br>"
abstract: |
A great part of the comparative international research that has attempted to measure meritocratic beliefs has used the social inequality module of the ISSP (International Social Survey Programme), which offers an unprecedented opportunity to compare meritocratic views in different societies. Based on a series of studies using ISSP data, the present paper proposes a multidimensional measurement framework for meritocratic beliefs. This framework distinguishes, on the one side, between perceptions and preferences, and on the other side, between meritocratic and not meritocratic aspects. In a first study, we test the multidimensional framework for meritocratic beliefs using the ISSP 2009 inequality module through confirmatory factor analysis (CFA) techniques. After identifying the advantages and some limitations of ISSP items for a multidimensional operationalization of meritocratic beliefs, in a second study, we suggest an modified set of items that better taps the different dimensions of meritocracy. We examined the measuring properties of this new instrument using a sample of Chilean adults (N=2,141). Based on these results, we recommend improvements in measuring meritocratic beliefs in cross-national studies.
\newline
\newline
**Keywords**: meritocracy, survey methodology, social inequality, construct measurement
# keywords: "meritocracy, survey methodology, social inequality, construct measurement"
output:
bookdown::word_document2:
number_sections: false
reference_docx: input/template.docx
toc: false
bookdown::pdf_document2:
template: null
number_sections: false
toc: false
keep_tex: true
pandoc_args:
# - --template=input/mytemplate.tex #custom template para usar autores con afiliacion
bookdown::html_document2:
number_sections: false
linkcolor: blue
bibliography: input/bib/meritocracy.bib
csl: input/bib/apa7-singlespace.csl
editor_options:
chunk_output_type: console
geometry: margin=1in
header-includes:
- \usepackage{times} # Times New Roman
- \hypersetup {colorlinks = true, linkcolor = blue, urlcolor = blue}
- \usepackage{caption}
- \captionsetup[figure, table]{labelfont={bf},labelformat={default},labelsep=period}
- \usepackage{graphicx}
- \usepackage{float}
- \usepackage{booktabs}
- \usepackage{longtable}
- \usepackage{array}
- \usepackage{multirow}
- \usepackage{wrapfig}
- \usepackage{float}
- \usepackage{colortbl}
- \usepackage{pdflscape}
- \usepackage{tabu}
- \usepackage{threeparttable}
- \usepackage[british,UKenglish,USenglish,american]{babel}
always_allow_html: true # for word output
fontsize: 10pt
papersize: a4
---
```{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-blinded-RR-IJS.Rmd", output_format = "bookdown::pdf_document2")
rmarkdown::render("paper-blinded-RR-IJS.Rmd", output_format = "bookdown::html_document2")
rmarkdown::render("paper-blinded-RR-IJS.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")
```
<!---
\pagebreak
# Acknowledgments
The authors recognize the support of ANID/FONDECYT grant 1160921 and of the Center for Conflict and Social Cohesion Studies (COES) grant ANID/FONDAP 1513009.
\pagebreak
\selectlanguage{USenglish}
--->
# Introduction
Economic inequality and income concentration have become topics of growing concern over the last years, leading to a series of social upheavals in different societies as well as diverse critical analyses regarding the development of capitalism and its consequences [@streeck_politics_2014; @piketty_capital_2014]. In such a 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 research area, and particularly in times of economic and health crises, 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 has been 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 and instruments used for measuring meritocracy vary extensively among studies. In many cases, similar phenomena are associated with different indicators, and conversely, different phenomena are measured with similar indicators. Such approaches limit the comparability of studies and the capacity to understand the effects of meritocratic beliefs across different disciplines and lines of research, raising doubts about the validity of the instruments used to measure meritocratic beliefs. In this sense, this paper is aligned with recent discussions about the estimand [@lundberg_what_2021] in sociology, this is, the need for a clear definition of what we are estimating as well as the connection of this definition with statistical evidence.
Based on a critical analysis of different approaches to the empirical study of meritocracy to date —most of them using data from the inequality module of ISSP—, this article identifies several conceptual and measurement issues. In order to address them, firstly, we propose a multidimensional conceptual framework for measuring meritocratic beliefs. The proposal consists in a first basic distinction between the dimensions of perceptions and preferences for meritocracy, often confused in the literature. Furthermore, the proposal distinguishes between meritocratic and non-meritocratic dimensions, as they would not be two poles of the same continuum as previous studies suggest. Secondly, we test the validity of our conceptual framework with two studies. Study 1 offers an operationalization and confirmatory analysis of the proposed multidimensional framework using available items from ISSP, inequality module 2009 (the reason to use this survey wave instead of the last one on social inequality from 2019 is that the 2009 version includes some key items used in meritocratic reserach that were removed in 2019). Taking into account on the advantages and limitations of the results obtained in study 1, and in order to gain additional evidence for the validity of the measurement instruments, study 2 suggests modifications and expansion of the items commonly used to measure meritocratic beliefs. This measurement proposal is tested with data available from a Chilean survey on meritocracy and inequality (2020).
## 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 on a likert scale. The assumptions behind such a 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 item's battery which is available in several international surveys (as ISSP), usually called “reasons to get ahead”. This battery displays a series of indicators related to what people consider important to get ahead: hard work, education, ambition, a wealthy family, the right connections, religion, race, and gender. Therefore, considering only one of the items means that other aspects associated with talent, such as education, would not be deemed 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 such conceptual and measurement approach of meritocratic beliefs, we can observe a couple of strong conceptual assumptions: a) effort would not depend on parental influence (at least not as strongly as intelligence), and b) talent (as innate ability) is not meritocratic (contrary to Michael Young's' original conceptualization). This conceptual and measurement-based assumption is found in other studies, which also assume effort to be the main and only aspect of meritocracy [@girerd_neoliberalism_2020; @bubak_perceptions_2019], raising the question: Is effort the only (or main) dimension behind the concept of meritocracy?
We argue that whether talent (as intelligence and ability) is or is not considered meritocratic is an interesting topic to discuss from a philosophical point of view. However, when it comes to survey research on meritocratic beliefs, the weight of effort or talent in what it is deemed meritocratic should be left to public scrutiny. Furthermore, considering talent as part of meritocracy certainly opens some appealing avenues of research. For instance, some studies suggest that, for the elites, meritocracy is related to talent, whereas effort is more characteristic of the meritocracy of the middle and lower classes [@atria_economic_2020]. Therefore, we suggest that a concept (and measure) of meritocracy benefits from including both talent and effort, as in Young's original conception.
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" items’ battery, mentioned above. Some versions of this battery ask "how important you think it is for getting ahead in life" and then list various 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, the term _beliefs_ used to cover almost anything related to subjective factors. In 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 referring to perceptions (i.e., what is). For instance, in @reynolds_perceptions_2014, 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? To expand the analytical conceptual framework, we believe that both dimensions should be considered, as proposed by @duru-bellat_who_2012. Such an approach opens up the possibility of analyzing whether perceptions and preferences are related (i.e., have a high correlation), or constitute independent aspects of the same phenomenon. As @sonhing_merit_2011 has pointed out, "People can believe that outcomes ought to be distributed based on 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 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, for instance, family status and the use of personal advantages (such as contacts or having a wealthy family) to get ahead in life. This distinction refers to the classical achieved and ascribed status dimension from @linton_study_1936. For instance, @kunovich_systems_2007 used an items' battery following the question “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 as 1 when rated as "not important at all" (i.e. reverse coded). The assumption behind this approach is that rejecting a supposed ascribed or non-meritocratic aspect (such 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, whereas factors such as family wealth and connections were classified as non-meritocratic. Despite making this distinction, in the operationalization 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 conceptual elaboration and empirical assessment. For instance, a such distinction could open the door to studying to what extent different and contradictory views of meritocracy can coexist, to what extent individuals and societies differ in this regard, and of course the associated factors to such differences. Although the use of the concept "non-meritocratic" is very broad, we prefer to use it instead of other terms like ascription, given that this last one leaves out aspects such as the use of personal relationships as a way to achieve success.
d. _Accounting for measurement error_
Finally, most meritocracy studies have not adequately 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 a 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 Reynolds and Xian [-@reynolds_perceptions_2014] made advances by conducting a principal component analysis of meritocratic and non-meritocratic dimensions, they finally decided to build a sum index despite proving a multidimensional latent structure.
There is a relevant trade-off regarding measurement error estimation in survey instruments. Including multiple items per conceptual dimension opens the possibility of validity studies (at least in terms of the construct) by using factor analysis techniques, particularly confirmatory ones. However, increasing the number of items reduces the probability of usability of the scale in survey research given space limitations. This validity-usability conundrum is not easy to solve and, as we will show later in the methods section, we opted for a minimalistic approach . Such approach is oriented to the usability of the measurement instrument, but still giving the possibility of confirmatory factor analysis.
## A conceptual proposal for studying meritocracy {-#instrumentprop}
Based on the previous assumptions and limitations identified in the empirical study of meritocracy, mostly using the inequality module of ISSP, we propose a measurement framework for the study of meritocratic beliefs 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 to _account for measurement error_ in a confirmatory factor analysis context.
- Based on _previous indicators_ as much as possible to keep comparability between studies. As most of the survey research on meritocracy so far has been made with the inequality module of the ISSP survey, we propose a comprehensive operationalization suitable for this dataset, as well as a novel instrument that attempts to rescue as much as possible the original ISSP items.
- _Brief_, as to be used in regular public opinion surveys [@davidov_measurement_2009]. In this regard, 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 frequently 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], often treated as different ends of the same continuum in previous research. Non-meritocratic elements refer to the use of resources such as personal contacts and/or family advantages to get ahead in life.
The ISSP survey (inequality module) has some items that researchers have used to measure each of the four different dimensions of meritocracy depicted here, but in a rather inconsistent manner. In the next section, we propose a classification of the ISSP meritocracy items into the different dimensions suggested in our multidimensional model depicted in Figure \@ref(fig:merit-model) as well as an empirical test of this model.
# 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 two studies. The first study is an analysis of the multidimensional model for measuring meritocratic beliefs using ISSP data. Based on the results of this first study, the second study recommends some modifications and expansions of the ISSP items in order to tap better each of the dimensions identified in the study of meritocratic beliefs.
# Study 1: Analyzing meritocratic beliefs with ISSP data
## Data
The data corresponds to the social inequality module from the International Social Survey Programme (ISSP), the most specialized international comparative survey in perceptions, attitudes, and beliefs about inequality-related issues [ @issp-research-groupInternationalSocialSurvey2017]. This wave corresponds to 2009 and covers attitudes towards a series of topics dealing with social inequality across 41 countries and 56,021 individuals. Although there is data available from this module for a more recent wave (2019), the 2009 wave contains relevant items for studying meritocracy that unfortunately are not present in the last wave (details about which items are missing in the last 2019 wave are presented in study 2, Table \@ref(tab:table-indicadores)). Table \@ref(tab:countries) (appendix) shows details about the sample of countries in the ISSP 2009 data.
## Variables
There are a series of indicators in the ISSP survey that we classified 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 studies. 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 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 of the measurement model was performed using Confirmatory Factor Analysis (CFA). CFA was conducted using the `lavaan` R package (version 0.6-3; @rosseel_lavaan_2012a), with diagonally weighted least squares (DWLS) estimation due to the items' ordinal level of measurement [@kline_principles_2016; @rosseel_lavaan_2012a]. 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 observe a high degree of importance attributed to factors such as hard work and ambition for getting ahead, concentrating 94.9% and 92.8% in the _fairly important_ to _essential_ categories, respectively. 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, decreasing 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). Such inconsistency between the target of the items for perceptions an preferences is one of the issues to deal with in study 2.
```{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, according to the criteria suggested by @cohen_statistical_1988 for effect size, we observe in general that the moderate to high associations are between the pairs of items representing each of the four dimensions described in Table \@ref(tab:table-issp). The exception here is the dimension of non-meritocratic perception, in which six items appear mostly associated by pairs according to their specific topics (family background, personal background, and connections). Still, between this same set of items, moderate correlations could anticipate a single latent factor underlying non-meritocratic perceptions, which is tested next in the confirmatory factor analysis model.
```{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 estimates four factors, each for one of the dimensions of the multidimensional framework for meritocratic beliefs presented in Table \@ref(tab:table-issp), with only regular fit indicators (CFI=0.959, TLI=0.944, RMSEA=0.098, $\chi^2$(df=48)= 21308.535). 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, knitr,lavaan)
library(kableExtra)
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-dimensional structure but generates an additional model for the non-meritocratic perceptions as depicted in Figure \@ref(fig:meas02-issp). In this model, the pairs of items in this dimension form three latent factors which at the same time generate a second-order factor of non-meritocratic perceptions, improving the fit of the model significantly.
```{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/figure4.PNG')
```
Regarding the correlations between the factors in Figure \@ref(fig:meas02-issp), we observe that perceptions are correlated with preferences, but more strongly for the meritocratic ($r=0.46, p<0.01$) than for the non-meritocratic ($r=0.27,p<0.01$) dimensions. Secondly, both perceptual dimensions (meritocratic and non-meritocratic) depict a moderate positive correlation ($r=0.30, p<0.01$), suggesting that they are not the opposite poles of the same continuum as some previous studies assume. Something similar occurs for the correlation between the two dimensions of preferences ($r=0.25,p<0.01$).
Based on the previous measurement validation, next we assess some of the potential of the proposed measurement strategy for cross-national comparisons of meritocratic beliefs. In this line, Figure \@ref(fig:scat1) depicts the correlation of factor scores for meritocratic perceptions and meritocratic preferences at the country level ($r=0.65,p<0.01$). For instance, Bulgaria (BGR) and the United States (USA) appropriately represent the positive association between perception and preferences. In other words, countries that perceived merit in their society as an essential factor to get ahead in life also consider that effort and talent should be determinant factors in how much an individual earns. On the other hand, in countries with lower perceived meritocracy, preferences are also low, where Denmark (DNK) and Venezuela (VEN) are representative cases of this association.
Another finding depicted by Figure \@ref(fig:scat1) is the positive association of non-meritocratic perceptions with meritocratic preferences ($r=0.55,p<0.01$), showing that countries like Bulgaria (BGR) and Philipines (PHL) represent cases with higher non-meritocratic perceptions and higher preferences for meritocracy. In other words, in societies where people perceive higher importance of non-meritocratic aspects to get ahead in life, people also prefer that merit should be a determinant factor in wages. On the other side, countries like Sweden (SWE) or Denmark (DNK), both Scandinavian societies with strong welfare systems, represent contexts in which non-meritocratic aspects are not described as important, and merit is not considered as a factor that should be relevant for wages. This finding, particularly the positive association between non-meritocratic perception and meritocratic preferences, opens the question of to what extent meritocratic preferences are capable to hold even under evidence of a large amount of perceived non-meritocracy .
```{r scat1, fig.cap="Cross-national comparison of non-meritocratic and meritocratic perceptions with meritocratic preference",fig.height=6, fig.width=12}
load(file = "input/data/proc/data_s1.RData")
if (!require("pacman")) install.packages("pacman")
# pacman::p_load(dplyr, kableExtra, knitr,lavaan,countrycode,ggplot2,haven,
gridExtra)
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: 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 = F)
df_proc<- data_s1 %>% select(id,v5,wealthy:hardjob)
df_proc$ccode <- as.numeric(data_s1$v5)
predicted2 <- lavPredict(fit_perpref2,newdata = data_s1)
idx <- lavInspect(fit_perpref2, "case.idx")
fscores <- lavPredict(fit_perpref2)
## loop over factors
for (fs in colnames(fscores)) {
df_proc[idx, fs] <- fscores[ , fs]
}
df_proc <- df_proc %>% select(id,ccode,percmerit,prefmerit,prefnmerit,percnmerit) %>% na.omit()
df_proc$clab <- countrycode(sourcevar = df_proc$ccode,
origin = "iso3n",
destination = "iso3c")
avg_count <-
df_proc %>% group_by(clab) %>% summarise(prefmerit=mean(prefmerit),
percmerit=mean(percmerit),
prefnmerit=mean(prefnmerit),
percnmerit=mean(percnmerit),
pop=n()
)
# idea: por continentes o regiones del mundo
# avg_count %>% filter(clab %in% c("ARG","VEN","CHL"))
avg_count$continent <- countrycode(sourcevar = avg_count$clab,
origin = "iso3c",
destination = "continent")
avg_count$region <- countrycode(sourcevar = avg_count$clab,
origin = "iso3c",
destination = "region23")
avg_count$country <- countrycode(sourcevar = avg_count$clab,
origin = "iso3c",
destination = "country.name")
# create figure 1: perception merit by preferences merit
figure1 <-
ggplot(avg_count, aes(x=percmerit, y=prefmerit)) +
# geom_point() +
geom_text(label=as.character(avg_count$clab)) +
scale_x_continuous(limits = c(-0.6,0.6))+
scale_y_continuous(limits = c(-0.6,0.6))+
geom_smooth(method = "lm",fullrange=TRUE) +
xlab("Meritocratic perception")+
ylab("Meritocratic preference")
# create figure 2: perception non-merit by preferences merit
figure2 <-
ggplot(avg_count, aes(x=percnmerit, y=prefmerit)) +
# geom_point() +
geom_text(label=as.character(avg_count$clab)) +
scale_x_continuous(limits = c(-0.6,0.6))+
scale_y_continuous(limits = c(-0.6,0.6))+
geom_smooth(method = "lm",fullrange=TRUE) +
geom_smooth(method = "lm") +
xlab("Non-meritocratic perception")+
ylab("Meritocratic preference")
grid.arrange(figure1, figure2, ncol = 2,
bottom = grid::textGrob(label = paste0("Source: Authors calculation based on International Social Survey Programme - Social Inequality 2009",
" (n=",dim(df_proc)[1],")"),
hjust = 0.1,
gp = grid::gpar(fontface = 1, fontsize = 9)))
```
Another possibility to explore within this multidimensional framework of meritocratic beliefs is the differences between countries. For instance, when comparing societies based on their level of industrialization [@ishida_trends_2005], Figure \@ref(fig:scat2) shows that early and late-industrialized countries exhibit a similar association between meritocratic perceptions and preferences ($r=0.67, p<0.05$; $r=0.68, p<0.01$, respectively). However, when analyzing the association between non-meritocratic perception and meritocratic preferences, industrialized nations exhibit a strong positive correlation ($r=0.75, p<0.01$), which is not the case for late-industrialized countries ($r=0.29, p>0.05$). A possible interpretation is that the perception of non-meritocracy in less industrialized societies threatens the meritocratic ideal, which is not the case for the industrialized ones. Still, this preliminary analysis only attempts to show some possiblities that open up when introducing a multidimensional perspective for studying meritocratic beliefs
```{r scat2, fig.cap="Cross-national comparison between industrialized and late-industrialized",fig.height=10, fig.width=10}
load(file = "input/data/proc/data_s1.RData")
if (!require("pacman")) install.packages("pacman")
pacman::p_load(dplyr, kableExtra, knitr,lavaan,countrycode,ggplot2,haven,
gridExtra)
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: 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 = F)
df_proc<- data_s1 %>% select(id,v5,wealthy:hardjob)
df_proc$ccode <- as.numeric(data_s1$v5)
predicted2 <- lavPredict(fit_perpref2,newdata = data_s1)
idx <- lavInspect(fit_perpref2, "case.idx")
fscores <- lavPredict(fit_perpref2)
## loop over factors
for (fs in colnames(fscores)) {
df_proc[idx, fs] <- fscores[ , fs]
}
df_proc <- df_proc %>% select(id,ccode,percmerit,prefmerit,prefnmerit,percnmerit) %>% na.omit()
df_proc$clab <- countrycode(sourcevar = df_proc$ccode,
origin = "iso3n",
destination = "iso3c")
avg_count <-
df_proc %>% group_by(clab) %>% summarise(prefmerit=mean(prefmerit),
percmerit=mean(percmerit),
prefnmerit=mean(prefnmerit),
percnmerit=mean(percnmerit),
pop=n()
)
# idea: por continentes o regiones del mundo
# avg_count %>% filter(clab %in% c("ARG","VEN","CHL"))
avg_count$continent <- countrycode(sourcevar = avg_count$clab,
origin = "iso3c",
destination = "continent")
avg_count$region <- countrycode(sourcevar = avg_count$clab,
origin = "iso3c",
destination = "region23")
avg_count$country <- countrycode(sourcevar = avg_count$clab,
origin = "iso3c",
destination = "country.name")
western <-
avg_count %>%
filter(continent=="Europe"| clab %in% c("USA","AUS","NZL"))
nonwestern <-
avg_count %>%
filter(continent=="Asia" | clab %in% c("VEN","CHL","ARG","ZAF"))
indus <- avg_count %>%
filter(region %in% c("Northern America","Western Europe"))
lateindus <- avg_count %>%
filter(!region %in% c("Northern America","Western Europe"))
indus <- avg_count %>%
filter(country %in% c("Australia","Austria","Belgium","Switzerland","Germany","Denmark","Finland","France","United Kingdom","Iceland","Norway", "Sweden","United States"))
lateindus <- avg_count %>%
filter(!country %in% c("Australia","Austria","Belgium","Switzerland","Germany","Denmark","Finland","France","United Kingdom","Iceland","Norway", "Sweden","United States"))
# Western countries-------------------------------------------------------------
wesmerit <-
indus %>%
ggplot(aes(x=percmerit, y=prefmerit)) +
# geom_point() +
geom_text(label=as.character(indus$clab)) +
scale_x_continuous(limits = c(-0.6,0.6))+
scale_y_continuous(limits = c(-0.6,0.6))+
geom_smooth(method = "lm",fullrange=TRUE) +
xlab("Meritocratic perception")+
ylab("Meritocratic preference") +
ggtitle("Industrialized countries")
wesnonmer <-
indus %>%
ggplot(aes(x=percnmerit, y=prefmerit)) +
# geom_point() +
geom_text(label=as.character(indus$clab)) +
scale_x_continuous(limits = c(-0.6,0.6))+
scale_y_continuous(limits = c(-0.6,0.6))+
geom_smooth(method = "lm",fullrange=TRUE) +
xlab("Non-meritocratic perception")+
ylab("Meritocratic preference") +
ggtitle("Industrialized countries")
# Non western countries --------------------------------------------------------
nonwesmer <-
lateindus %>%
ggplot(aes(x=percmerit, y=prefmerit)) +
# geom_point() +
geom_text(label=as.character(lateindus$clab)) +
scale_x_continuous(limits = c(-0.6,0.6))+
scale_y_continuous(limits = c(-0.6,0.6))+
geom_smooth(method = "lm",fullrange=TRUE) +
xlab("Meritocratic perception")+
ylab("Meritocratic preference") +
ggtitle("Late industralized countries")
nonwesnonmer <-
lateindus %>%
ggplot(aes(x=percnmerit, y=prefmerit)) +
# geom_point() +
geom_text(label=as.character(lateindus$clab)) +
scale_x_continuous(limits = c(-0.6,0.6))+
scale_y_continuous(limits = c(-0.6,0.6))+
geom_smooth(method = "lm",fullrange=TRUE) +
xlab("Non-meritocratic perception")+
ylab("Meritocratic preference") +
ggtitle("Late industralized countries")
grid.arrange(wesmerit,wesnonmer,
nonwesmer,nonwesnonmer, ncol = 2,
bottom = grid::textGrob(label = paste0("Source: Authors calculation based on International Social Survey Programme - Social Inequality 2009"),
hjust = 0.2,
gp = grid::gpar(fontface = 1, fontsize = 9)))
```
## Discussion Study 1
ISSP is - and probably it will continue to be - the most widely used dataset for comparative studies of meritocratic beliefs. Although several ISSP items were not conceived originally with this end, they have been extensively used to operationalize different aspects of meritocracy. In this study, we ordered and classified ISSP items, which have been previously used for measuring meritocratic beliefs, into four different dimensions: perceptions and preferences, and meritocracy and non-meritocracy. The confirmatory analysis gave evidence of an adequate fit of the multidimensional model to the ISSP data, this is, it is possible to identify perceptions and preferences for meritocracy and non-meritocracy as four related but different constructs. Regarding the non-meritocratic dimensions, we can preliminary conclude that the wide use of reverse-coding for non-meritocratic items attempting to measure meritocratic perceptions or preferences, is not an adequate operationalization. Meritocracy and non-meritocracy are related but different concepts, meaning that it is theoretically possible to find different combinations at individual and contextual levels. This finding opens a series of avenues for future research that are considered in the conclusions.
Despite the advantages of using ISSP data for studying meritocratic beliefs, there are some aspects to be aware of regarding the measurement quality offered by the available items. Some of the items are not really coherent across dimensions, as for instance, meritocratic perceptions are related to ambition and hard work, whereas meritocratic preferences deal with how well a job is done. Such differences impose limitations for a comparative analysis between pereptions and preferences. A better operationalization would require more alignment between the different sides of the same concept, this is, that perceptions and preferences point to the same object of analysis. Furthermore, the instrument is rather unbalanced given the larger amount of non-meritocratic perception items (six) when compared to the number items related to the other dimensions (two). These limitations are taken into account next in the design of study 2.
# Study 2: A proposal for a multidimensional measure of meritocratic beliefs
Taking the analysis of meritocratic beliefs with ISSP as a departing point, the following study offers and test a new measurement instrument that attempts to overcome some limitations identified in the previous study. In this sense, the analysis with ISSP data can be considered as an _inductive_ exercise, taking the items and data available and attempting to adjust this information to the proposed multidimensional conceptual model. In the following study we take a complementary _deductive_ approach, departing from the conceptual model for the design of a measurement instrument. However, this second approach does not start from scratch, as it is based on ISSP items as much as possible for the sake of comparability with previous studies. The two major differences are: a) it incorporates a balanced and minimalistic representation of items for each of the four dimensions,and b) attempts to maintain the coherence in the topics asked across dimensions (for instance, "effort" in items for both perceptions and preferences).
## Data
The data comes from an online survey that was part of a larger study on meritocracy and distributive preferences developed in Chile in 2020, funded by the Chilean 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 individuals was collected, excluding those who did not sign the informed consent and those not answering the meritocracy instrument. There were no significant differences between our sample and the wider population for most socio-demographic characteristics, except for the educational level (see Table \@ref(tab:rep-samp) in Appendix). As 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]. This survey was designed as a three-wave panel and the data used in this analysis corresponds to the first wave.
All participants signed the required informed consent and the survey implementation was approved by the ethical committee from Pontificia Universidad Católica de Chile, protocol ID 150811008, April 6th 2016.
## Study design
### Instrument
The proposed items' battery of meritocratic perceptions and preferences consisted of eight indicators, two for each of the four dimensions listed earlier: perceptions (meritocratic/non-meritocratic) and preferences (meritocratic/non-meritocratic). Two main criteria oriented this design. The first one was usability in social survey research, for which the scale length must attend spacer restrictions in such studies. Nevertheless, at the same time, the scale should offer possibilities of accounting for measurement error through factor analysis techniques. Although a rule of thumb in latent measurement suggests at least three indicators per dimension, we still opted for two to count with a brief scale. Although such a decision posits some limitations for modeling measurement error, still allows for factor analysis and is a common approach in previous social survey studies with limited items (for instance see @davidov_measurement_2009). The second criterion is to expand the possibilities of comparability with previous studies on meritocracy, by considering some of the items previously used in this research area. To this regard, some of the items were adapted from the items battery "reasons to get ahead" (ISSP/GSS), which has been widely used for operationalizing meritocracy in international research [@mijs_paradox_2019; @duru-bellat_who_2012; @reynolds_perceptions_2014].
The items, organized according to their respective 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). The table presents an additional column with the respective equivalent items from ISSP 2009/2019. With this information it is possible to have a more clear picture of the areas in which the proposed measurement instrument is similar to ISSP and in which ones it differs.
```{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
tabitems$itemsspa <- NULL
tabitems$issp <- c("How important is hard work?","-",
"How important is coming from a wealthy family?", "How important is knowing the right people",
"How hard he or she works at the job?*","How well he or she does the job?*",
"-", "-")
cnames <- c("Component", "Dimensions","Items" , "Items ISSP (2009,2019)")
cap <- "Items' battery for the multidimensional measurement of meritocratic beliefs and their equivalents in ISSP"
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") %>%
kableExtra::footnote(general = "Those with an asterisk (*) are only present in 2009",footnote_as_chunk = T)
```
\pagebreak
### Administration sets
To evaluate 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 shown 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/figure6.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 performed with the `lavaan` R package (version 0.6-3; @rosseel_lavaan_2012a), with diagonally weighted least squares (DWLS) estimation due to the items' ordinal level of measurement [@kline_principles_2016; @rosseel_lavaan_2012a]. 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/?view_only=adcd496887f2471597b1d6ffb46e492d). This pre-registration includes 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. Generally, there is more agreement in the perception of non-meritocratic items than in meritocratic ones, while in the preferences, the opposite occurs. Regarding preferences, the predominant role of effort over talent as a criterion of meritocratic preference is noteworthy. All in all, the descriptive results show a 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, and as expected, the largest correlations are between indicators that correspond to the same factors (dimensions) behind the conceptual model (e.g., perception of meritocracy by effort and by talent, $r=0.52,p<0.01$). Secondly, among these correlations, the highest are those between the non-meritocratic dimensions, both in perceptions ($r=0.73,p<0.01$) and preferences ($r=0.61,p<0.01$). 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 and indicating that the perception of non-meritocracy would be related to larger meritocratic preferences. Finally, similar to the results of study 1 with ISSP data, we observe no considerable negative correlations between meritocratic and non-meritocratic aspects, undermining previous studies' assumptions 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 meritocracy 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 scale items 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 instrument that were randomly assigned to the participants: order according to perceptions/preferences, order according to topics, and a complete random items’ 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",