-
Notifications
You must be signed in to change notification settings - Fork 3
/
s10-sampling.html
891 lines (870 loc) · 81.1 KB
/
s10-sampling.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="shared/bookhub.css" rel="stylesheet" type="text/css">
<title>Sampling</title>
</head>
<body>
<div id=navbar-top class="navbar">
<div class="navbar-part left">
<a href="s09-defining-and-measuring-concept.html"><img src="shared/images/batch-left.png"></a> <a href="s09-defining-and-measuring-concept.html">Previous Chapter</a>
</div>
<div class="navbar-part middle">
<a href="index.html"><img src="shared/images/batch-up.png"></a> <a href="index.html">Table of Contents</a>
</div>
<div class="navbar-part right">
<a href="s11-survey-research-a-quantitative.html">Next Chapter</a> <a href="s11-survey-research-a-quantitative.html"><img src="shared/images/batch-right.png"></a>
</div>
</div>
<div id="book-content">
<div class="chapter" id="blackstone_1.0-ch07" version="5.0" lang="en">
<h1 class="title editable block">
<span class="title-prefix">Chapter 7</span> Sampling</h1>
<div class="section" id="blackstone_1.0-ch07_s00">
<h2 class="title editable block">Who or What?</h2>
<p class="para editable block" id="blackstone_1.0-ch07_s00_p01">Remember back in <a class="xref" href="blackstone_1.0-ch01#blackstone_1.0-ch01">Chapter 1 "Introduction"</a> when we saw the cute photo of the babies hanging out together and one of them was wearing a green onesie? I mentioned there that if we were to conclude that all babies wore green based on the photo that we would have committed selective observation. In that example of informal observation, our sampling strategy (just observing the baby in green) was of course faulty, but we nevertheless would have engaged in sampling. Sampling has to do with selecting some subset of one’s group of interest (in this case, babies) and drawing conclusions from that subset. How we sample and who we sample shapes what sorts of conclusions we are able to draw. Ultimately, this chapter focuses on questions about the who or the what that you want to be able to make claims about in your research. In the following sections we’ll define sampling, discuss different types of sampling strategies, and consider how to judge the quality of samples as consumers of social scientific research.</p>
</div>
</div>
<div class="section" id="blackstone_1.0-ch07_s01" condition="start-of-chunk" version="5.0" lang="en">
<h2 class="title editable block">
<span class="title-prefix">7.1</span> Populations Versus Samples</h2>
<div class="learning_objectives editable block" id="blackstone_1.0-ch07_s01_n01">
<h3 class="title">Learning Objective</h3>
<ol class="orderedlist" id="blackstone_1.0-ch07_s01_l01">
<li>Understand the difference between populations and samples.</li>
</ol>
</div>
<p class="para editable block" id="blackstone_1.0-ch07_s01_p01">When I teach research methods, my students are sometimes disheartened to discover that the research projects they complete during the course will not make it possible for them to make sweeping claims about “all” of whomever it is that they’re interested in studying. What they fail to realize, however, is that they are not alone. One of the most surprising and frustrating lessons research methods students learn is that there is a difference between one’s population of interest and one’s study sample. While there are certainly exceptions, more often than not a researcher’s population and her or his sample are not the same.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s01_p02">In social scientific research, a <span class="margin_term"><a class="glossterm">population</a><span class="glossdef">The group (be it people, events, etc.) that you want to be able to draw conclusions about at the end of your study.</span></span> is the cluster of people, events, things, or other phenomena that you are most interested in; it is often the “who” or “what” that you want to be able to say something about at the end of your study. Populations in research may be rather large, such as “the American people,” but they are more typically a little less vague than that. For example, a large study for which the population of interest really is the American people will likely specify which American people, such as adults over the age of 18 or citizens or legal residents. A <span class="margin_term"><a class="glossterm">sample</a><span class="glossdef">The group (be it people, events, etc.) from which you actually collect data.</span></span>, on the other hand, is the cluster of people or events, for example, from or about which you will actually gather data. Some sampling strategies allow researchers to make claims about populations that are much larger than their actually sample with a fair amount of confidence. Other sampling strategies are designed to allow researchers to make theoretical contributions rather than to make sweeping claims about large populations. We’ll discuss both types of strategies later in this chapter.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s01_p03">As I’ve now said a couple of times, it is quite rare for a researcher to gather data from their entire population of interest. This might sound surprising or disappointing until you think about the kinds of research questions that sociologists typically ask. For example, let’s say we wish to answer the following research question: “How do men’s and women’s college experiences differ, and how are they similar?” Would you expect to be able to collect data from all college students across all nations from all historical time periods? Unless you plan to make answering this research question your entire life’s work (and then some), I’m guessing your answer is a resounding no way. So what to do? Does not having the time or resources to gather data from every single person of interest mean having to give up your research interest? Absolutely not. It just means having to make some hard choices about sampling, and then being honest with yourself and your readers about the limitations of your study based on the sample from whom you were able to actually collect data.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s01_p04"><span class="margin_term"><a class="glossterm">Sampling</a><span class="glossdef">The process of selecting observations that will be analyzed for research purposes.</span></span> is the process of selecting observations that will be analyzed for research purposes. Both qualitative and quantitative researchers use sampling techniques to help them identify the what or whom from which they will collect their observations. Because the goals of qualitative and quantitative research differ, however, so, too, do the sampling procedures of the researchers employing these methods. First, we examine sampling types and techniques used in qualitative research. After that, we’ll look at how sampling typically works in quantitative research.</p>
<div class="key_takeaways editable block" id="blackstone_1.0-ch07_s01_n02">
<h3 class="title">Key Takeaways</h3>
<ul class="itemizedlist" id="blackstone_1.0-ch07_s01_l02">
<li>A population is the group that is the main focus of a researcher’s interest; a sample is the group from whom the researcher actually collects data.</li>
<li>Populations and samples might be one and the same, but more often they are not.</li>
<li>Sampling involves selecting the observations that you will analyze.</li>
</ul>
</div>
<div class="exercises editable block" id="blackstone_1.0-ch07_s01_n03">
<h3 class="title">Exercises</h3>
<ol class="orderedlist" id="blackstone_1.0-ch07_s01_l03">
<li>Read through the methods section of a couple of scholarly articles describing empirical research. How do the authors talk about their populations and samples, if at all? What do the articles’ abstracts suggest in terms of whom conclusions are being drawn about?</li>
<li>Think of a research project you have envisioned conducting as you’ve read this text. Would your population and sample be one and the same, or would they differ somehow? Explain.</li>
</ol>
</div>
</div>
<div class="section" id="blackstone_1.0-ch07_s02" condition="start-of-chunk" version="5.0" lang="en">
<h2 class="title editable block">
<span class="title-prefix">7.2</span> Sampling in Qualitative Research</h2>
<div class="learning_objectives editable block" id="blackstone_1.0-ch07_s02_n01">
<h3 class="title">Learning Objectives</h3>
<ol class="orderedlist" id="blackstone_1.0-ch07_s02_l01">
<li>Define nonprobability sampling, and describe instances in which a researcher might choose a nonprobability sampling technique.</li>
<li>Describe the different types of nonprobability samples.</li>
</ol>
</div>
<p class="para editable block" id="blackstone_1.0-ch07_s02_p01">Qualitative researchers typically make sampling choices that enable them to deepen understanding of whatever phenomenon it is that they are studying. In this section we’ll examine the strategies that qualitative researchers typically employ when sampling as well as the various types of samples that qualitative researchers are most likely to use in their work.</p>
<div class="section" id="blackstone_1.0-ch07_s02_s01">
<h2 class="title editable block">Nonprobability Sampling</h2>
<p class="para editable block" id="blackstone_1.0-ch07_s02_s01_p01"><span class="margin_term"><a class="glossterm">Nonprobability sampling</a><span class="glossdef">Sampling techniques for which a person’s likelihood of being selected for membership in the sample is unknown.</span></span> refers to sampling techniques for which a person’s (or event’s or researcher’s focus’s) likelihood of being selected for membership in the sample is unknown. Because we don’t know the likelihood of selection, we don’t know with nonprobability samples whether a sample represents a larger population or not. But that’s OK, because representing the population is not the goal with nonprobability samples. That said, the fact that nonprobability samples do not represent a larger population does not mean that they are drawn arbitrarily or without any specific purpose in mind (once again, that would mean committing one of the errors of informal inquiry discussed in <a class="xref" href="blackstone_1.0-ch01#blackstone_1.0-ch01">Chapter 1 "Introduction"</a>). In the following subsection, “Types of Nonprobability Samples,” we’ll take a closer look at the process of selecting research <span class="margin_term"><a class="glossterm">elements</a><span class="glossdef">The individual unit that is the focus of a researcher’s investigation; possible elements in social science include people, documents, organizations, groups, beliefs, or behaviors.</span></span> when drawing a nonprobability sample. But first, let’s consider why a researcher might choose to use a nonprobability sample.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s02_s01_p02">So when are nonprobability samples ideal? One instance might be when we’re designing a research project. For example, if we’re conducting survey research, we may want to administer our survey to a few people who seem to resemble the folks we’re interested in studying in order to help work out kinks in the survey. We might also use a nonprobability sample at the early stages of a research project, if we’re conducting a pilot study or some exploratory research. This can be a quick way to gather some initial data and help us get some idea of the lay of the land before conducting a more extensive study. From these examples, we can see that nonprobability samples can be useful for setting up, framing, or beginning research. But it isn’t just early stage research that relies on and benefits from nonprobability sampling techniques.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s02_s01_p03">Researchers also use nonprobability samples in full-blown research projects. These projects are usually qualitative in nature, where the researcher’s goal is in-depth, idiographic understanding rather than more general, nomothetic understanding. Evaluation researchers whose aim is to describe some very specific small group might use nonprobability sampling techniques, for example. Researchers interested in contributing to our theoretical understanding of some phenomenon might also collect data from nonprobability samples. Maren Klawiter (1999)<span class="footnote" id="blackstone_1.0-fn07_001">Klawiter, M. (1999). Racing for the cure, walking women, and toxic touring: Mapping cultures of action within the Bay Area terrain of breast cancer. <em class="emphasis">Social Problems, 46</em>, 104–126.</span> relied on a nonprobability sample for her study of the role that culture plays in shaping social change. Klawiter conducted participant observation in three very different breast cancer organizations to understand “the bodily dimensions of cultural production and collective action.” Her intensive study of these three organizations allowed Klawiter to deeply understand each organization’s “culture of action” and, subsequently, to critique and contribute to broader theories of social change and social movement organization. Thus researchers interested in contributing to social theories, by either expanding on them, modifying them, or poking holes in their propositions, may use nonprobability sampling techniques to seek out cases that seem anomalous in order to understand how theories can be improved.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s02_s01_p04">In sum, there are a number and variety of instances in which the use of nonprobability samples makes sense. We’ll examine several specific types of nonprobability samples in the next subsection.</p>
</div>
<div class="section" id="blackstone_1.0-ch07_s02_s02">
<h2 class="title editable block">Types of Nonprobability Samples</h2>
<p class="para editable block" id="blackstone_1.0-ch07_s02_s02_p01">There are several types of nonprobability samples that researchers use. These include purposive samples, snowball samples, quota samples, and convenience samples. While the latter two strategies may be used by quantitative researchers from time to time, they are more typically employed in qualitative research, and because they are both nonprobability methods, we include them in this section of the chapter.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s02_s02_p02">To draw a <span class="margin_term"><a class="glossterm">purposive sample</a><span class="glossdef">A nonprobability sample type for which a researcher seeks out particular study elements that meet specific criteria that the researcher has identified.</span></span>, a researcher begins with specific perspectives in mind that he or she wishes to examine and then seeks out research participants who cover that full range of perspectives. For example, if you are studying students’ satisfaction with their living quarters on campus, you’ll want to be sure to include students who stay in each of the different types or locations of on-campus housing in your study. If you only include students from 1 of 10 dorms on campus, you may miss important details about the experiences of students who live in the 9 dorms you didn’t include in your study. In my own interviews of young people about their workplace sexual harassment experiences, I and my coauthors used a purposive sampling strategy; we used participants’ prior responses on a survey to ensure that we included both men and women in the interviews and that we included participants who’d had a range of harassment experiences, from relatively minor experiences to much more severe harassment.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s02_s02_p03">While purposive sampling is often used when one’s goal is to include participants who represent a broad range of perspectives, purposive sampling may also be used when a researcher wishes to include only people who meet very narrow or specific criteria. For example, in their study of Japanese women’s perceptions of intimate partner violence, Miyoko Nagae and Barbara L. Dancy (2010)<span class="footnote" id="blackstone_1.0-fn07_002">Nagae, M., & Dancy, B. L. (2010). Japanese women’s perceptions of intimate partner violence (IPV). <em class="emphasis">Journal of Interpersonal Violence, 25</em>, 753–766.</span> limited their study only to participants who had experienced intimate partner violence themselves, were at least 18 years old, had been married and living with their spouse at the time that the violence occurred, were heterosexual, and were willing to be interviewed. In this case, the researchers’ goal was to find participants who had had very specific experiences rather than finding those who had had quite diverse experiences, as in the preceding example. In both cases, the researchers involved shared the goal of understanding the topic at hand in as much depth as possible.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s02_s02_p04">Qualitative researchers sometimes rely on <span class="margin_term"><a class="glossterm">snowball sampling</a><span class="glossdef">A nonprobability sample type for which a researcher recruits study participants by asking prior participants to refer others.</span></span> techniques to identify study participants. In this case, a researcher might know of one or two people she’d like to include in her study but then relies on those initial participants to help identify additional study participants. Thus the researcher’s sample builds and becomes larger as the study continues, much as a snowball builds and becomes larger as it rolls through the snow.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s02_s02_p05">Snowball sampling is an especially useful strategy when a researcher wishes to study some stigmatized group or behavior. For example, a researcher who wanted to study how people with genital herpes cope with their medical condition would be unlikely to find many participants by posting a call for interviewees in the newspaper or making an announcement about the study at some large social gathering. Instead, the researcher might know someone with the condition, interview that person, and then be referred by the first interviewee to another potential subject. Having a previous participant vouch for the trustworthiness of the researcher may help new potential participants feel more comfortable about being included in the study.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s02_s02_p06">Snowball sampling is sometimes referred to as chain referral sampling. One research participant refers another, and that person refers another, and that person refers another—thus a chain of potential participants is identified. In addition to using this sampling strategy for potentially stigmatized populations, it is also a useful strategy to use when the researcher’s group of interest is likely to be difficult to find, not only because of some stigma associated with the group, but also because the group may be relatively rare. This was the case for Steven M. Kogan and colleagues (Kogan, Wejnert, Chen, Brody, & Slater, 2011)<span class="footnote" id="blackstone_1.0-fn07_003">Kogan, S. M., Wejnert, C., Chen, Y., Brody, G. H., & Slater, L. M. (2011). Respondent-driven sampling with hard-to-reach emerging adults: An introduction and case study with rural African Americans. <em class="emphasis">Journal of Adolescent Research, 26</em>, 30–60.</span> who wished to study the sexual behaviors of non-college-bound African American young adults who lived in high-poverty rural areas. The researchers first relied on their own networks to identify study participants, but because members of the study’s target population were not easy to find, access to the networks of initial study participants was very important for identifying additional participants. Initial participants were given coupons to pass on to others they knew who qualified for the study. Participants were given an added incentive for referring eligible study participants; they received not only $50.00 for participating in the study but also $20.00 for each person they recruited who also participated in the study. Using this strategy, Kogan and colleagues succeeded in recruiting 292 study participants.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s02_s02_p07"><span class="margin_term"><a class="glossterm">Quota sampling</a><span class="glossdef">A nonprobability sample type for which a researcher identifies subgroups within a population of interest and then selects some predetermined number of elements from within each subgroup.</span></span> is another nonprobability sampling strategy. This type of sampling is actually employed by both qualitative and quantitative researchers, but because it is a nonprobability method, we’ll discuss it in this section. When conducting quota sampling, a researcher identifies categories that are important to the study and for which there is likely to be some variation. Subgroups are created based on each category and the researcher decides how many people (or documents or whatever element happens to be the focus of the research) to include from each subgroup and collects data from that number for each subgroup.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s02_s02_p08">Let’s go back to the example we considered previously of student satisfaction with on-campus housing. Perhaps there are two types of housing on your campus: apartments that include full kitchens and dorm rooms where residents do not cook for themselves but eat in a dorm cafeteria. As a researcher, you might wish to understand how satisfaction varies across these two types of housing arrangements. Perhaps you have the time and resources to interview 20 campus residents, so you decide to interview 10 from each housing type. It is possible as well that your review of literature on the topic suggests that campus housing experiences vary by gender. If that is that case, perhaps you’ll decide on four important subgroups: men who live in apartments, women who live in apartments, men who live in dorm rooms, and women who live in dorm rooms. Your quota sample would include five people from each subgroup.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s02_s02_p09">In 1936, up-and-coming pollster George Gallup made history when he successfully predicted the outcome of the presidential election using quota sampling methods. The leading polling entity at the time, <em class="emphasis">The Literary Digest</em>, predicted that Alfred Landon would beat Franklin Roosevelt in the presidential election by a landslide. When Gallup’s prediction that Roosevelt would win, turned out to be correct, “the Gallup Poll was suddenly on the map” (Van Allen, 2011).<span class="footnote" id="blackstone_1.0-fn07_004">Van Allen, S. (2011). Gallup corporate history. Retrieved from <a class="link" target="_blank" href="http://www.gallup.com/corporate/1357/Corporate-History.aspx#2">http://www.gallup.com/corporate/1357/Corporate-History.aspx#2</a></span> Gallup successfully predicted subsequent elections based on quota samples, but in 1948, Gallup incorrectly predicted that Dewey would beat Truman in the US presidential election.<span class="footnote" id="blackstone_1.0-fn07_005">For more information about the 1948 election and other historically significant dates related to measurement, see the PBS timeline of “The first measured century” at <a class="link" target="_blank" href="http://www.pbs.org/fmc/timeline/e1948election.htm">http://www.pbs.org/fmc/timeline/e1948election.htm</a>.</span> Among other problems, the fact that Gallup’s quota categories did not represent those who actually voted (Neuman, 2007)<span class="footnote" id="blackstone_1.0-fn07_006">Neuman, W. L. (2007). <em class="emphasis">Basics of social research: Qualitative and quantitative approaches</em> (2nd ed.). Boston, MA: Pearson.</span> underscores the point that one should avoid attempting to make statistical generalizations from data collected using quota sampling methods.<span class="footnote" id="blackstone_1.0-fn07_007">If you are interested in the history of polling, I recommend a recent book: Fried, A. (2011). <em class="emphasis">Pathways to polling: Crisis, cooperation, and the making of public opinion professions</em>. New York, NY: Routledge.</span> While quota sampling offers the strength of helping the researcher account for potentially relevant variation across study elements, it would be a mistake to think of this strategy as yielding statistically representative findings.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s02_s02_p10">Finally, <span class="margin_term"><a class="glossterm">convenience sampling</a><span class="glossdef">A nonprobability sample type for which a researcher gathers data from the elements that happen to be convenient; also referred to as haphazard sampling.</span></span> is another nonprobability sampling strategy that is employed by both qualitative and quantitative researchers. To draw a convenience sample, a researcher simply collects data from those people or other relevant elements to which he or she has most convenient access. This method, also sometimes referred to as haphazard sampling, is most useful in exploratory research. It is also often used by journalists who need quick and easy access to people from their population of interest. If you’ve ever seen brief interviews of people on the street on the news, you’ve probably seen a haphazard sample being interviewed. While convenience samples offer one major benefit—convenience—we should be cautious about generalizing from research that relies on convenience samples.</p>
<div class="table block" id="blackstone_1.0-ch07_s02_s02_t01" frame="all">
<p class="title"><span class="title-prefix">Table 7.1</span> Types of Nonprobability Samples</p>
<table cellpadding="0" cellspacing="0">
<thead>
<tr>
<th>Sample type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>Purposive</td>
<td>Researcher seeks out elements that meet specific criteria.</td>
</tr>
<tr>
<td>Snowball</td>
<td>Researcher relies on participant referrals to recruit new participants.</td>
</tr>
<tr>
<td>Quota</td>
<td>Researcher selects cases from within several different subgroups.</td>
</tr>
<tr>
<td>Convenience</td>
<td>Researcher gathers data from whatever cases happen to be convenient.</td>
</tr>
</tbody>
</table>
</div>
<div class="key_takeaways editable block" id="blackstone_1.0-ch07_s02_s02_n01">
<h3 class="title">Key Takeaways</h3>
<ul class="itemizedlist" id="blackstone_1.0-ch07_s02_s02_l01">
<li>Nonprobability samples might be used when researchers are conducting exploratory research, by evaluation researchers, or by researchers whose aim is to make some theoretical contribution.</li>
<li>There are several types of nonprobability samples including purposive samples, snowball samples, quota samples, and convenience samples.</li>
</ul>
</div>
<div class="exercises editable block" id="blackstone_1.0-ch07_s02_s02_n02">
<h3 class="title">Exercises</h3>
<ol class="orderedlist" id="blackstone_1.0-ch07_s02_s02_l02">
<li>Imagine you are about to conduct a study of people’s use of the public parks in your hometown. Explain how you could employ each of the nonprobability sampling techniques described previously to recruit a sample for your study.</li>
<li>Of the four nonprobability sample types described, which seems strongest to you? Which seems weakest? Explain.</li>
</ol>
</div>
</div>
</div>
<div class="section" id="blackstone_1.0-ch07_s03" condition="start-of-chunk" version="5.0" lang="en">
<h2 class="title editable block">
<span class="title-prefix">7.3</span> Sampling in Quantitative Research</h2>
<div class="learning_objectives editable block" id="blackstone_1.0-ch07_s03_n01">
<h3 class="title">Learning Objectives</h3>
<ol class="orderedlist" id="blackstone_1.0-ch07_s03_l01">
<li>Describe how probability sampling differs from nonprobability sampling.</li>
<li>Define generalizability, and describe how it is achieved in probability samples.</li>
<li>Identify the various types of probability samples, and provide a brief description of each.</li>
</ol>
</div>
<p class="para editable block" id="blackstone_1.0-ch07_s03_p01">Quantitative researchers are often interested in being able to make generalizations about groups larger than their study samples. While there are certainly instances when quantitative researchers rely on nonprobability samples (e.g., when doing exploratory or evaluation research), quantitative researchers tend to rely on probability sampling techniques. The goals and techniques associated with probability samples differ from those of nonprobability samples. We’ll explore those unique goals and techniques in this section.</p>
<div class="section" id="blackstone_1.0-ch07_s03_s01">
<h2 class="title editable block">Probability Sampling</h2>
<p class="para editable block" id="blackstone_1.0-ch07_s03_s01_p01">Unlike nonprobability sampling, <span class="margin_term"><a class="glossterm">probability sampling</a><span class="glossdef">Sampling techniques for which a person’s likelihood of being selected for membership in the sample is known.</span></span> refers to sampling techniques for which a person’s (or event’s) likelihood of being selected for membership in the sample is known. You might ask yourself why we should care about a study element’s likelihood of being selected for membership in a researcher’s sample. The reason is that, in most cases, researchers who use probability sampling techniques are aiming to identify a <span class="margin_term"><a class="glossterm">representative sample</a><span class="glossdef">A sample that resembles the population from which it was drawn in all the ways that are important for the research being conducted.</span></span> from which to collect data. A representative sample is one that resembles the population from which it was drawn in all the ways that are important for the research being conducted. If, for example, you wish to be able to say something about differences between men and women at the end of your study, you better make sure that your sample doesn’t contain only women. That’s a bit of an oversimplification, but the point with representativeness is that if your population varies in some way that is important to your study, your sample should contain the same sorts of variation.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s03_s01_p02">Obtaining a representative sample is important in probability sampling because a key goal of studies that rely on probability samples is <span class="margin_term"><a class="glossterm">generalizability</a><span class="glossdef">The idea that a study’s results will tell us something about a group larger than the sample from which the findings were generated.</span></span>. In fact, generalizability is perhaps the key feature that distinguishes probability samples from nonprobability samples. Generalizability refers to the idea that a study’s results will tell us something about a group larger than the sample from which the findings were generated. In order to achieve generalizability, a core principle of probability sampling is that all elements in the researcher’s target population have an equal chance of being selected for inclusion in the study. In research, this is the principle of <span class="margin_term"><a class="glossterm">random selection</a><span class="glossdef">The principle that all elements in a researcher’s target population have an equal chance of being selected for inclusion in the study.</span></span>. Random selection is a mathematical process that we won’t go into too much depth about here, but if you have taken or plan to take a statistics course, you’ll learn more about it there. The important thing to remember about random selection here is that, as previously noted, it is a core principal of probability sampling. If a researcher uses random selection techniques to draw a sample, he or she will be able to estimate how closely the sample represents the larger population from which it was drawn by estimating the sampling error. <span class="margin_term"><a class="glossterm">Sampling error</a><span class="glossdef">The extent to which a sample represents its population on a particular parameter.</span></span> is a statistical calculation of the difference between results from a sample and the actual <span class="margin_term"><a class="glossterm">parameters</a><span class="glossdef">The actual characteristics of a population on any given variable; determined by measuring all elements in a population (as opposed to measuring elements from a sample).</span></span> of a population.</p>
</div>
<div class="section" id="blackstone_1.0-ch07_s03_s02">
<h2 class="title editable block">Types of Probability Samples</h2>
<p class="para editable block" id="blackstone_1.0-ch07_s03_s02_p01">There are a variety of probability samples that researchers may use. These include simple random samples, systematic samples, stratified samples, and cluster samples.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s03_s02_p02"><span class="margin_term"><a class="glossterm">Simple random samples</a><span class="glossdef">The most basic type of probability sample; a researcher begins with a list of every member of his or her population of interest, numbers each element sequentially, and then randomly selects the elements from which he or she will collect data.</span></span> are the most basic type of probability sample, but their use is not particularly common. Part of the reason for this may be the work involved in generating a simple random sample. To draw a simple random sample, a researcher starts with a list of every single member, or element, of his or her population of interest. This list is sometimes referred to as a <span class="margin_term"><a class="glossterm">sampling frame</a><span class="glossdef">A list of all elements in a population.</span></span>. Once that list has been created, the researcher numbers each element sequentially and then randomly selects the elements from which he or she will collect data. To randomly select elements, researchers use a table of numbers that have been generated randomly. There are several possible sources for obtaining a random number table. Some statistics and research methods textbooks offer such tables as appendices to the text. Perhaps a more accessible source is one of the many free random number generators available on the Internet. A good online source is the website Stat Trek, which contains a random number generator that you can use to create a random number table of whatever size you might need (<a class="link" target="_blank" href="http://stattrek.com/Tables/Random.aspx">http://stattrek.com/Tables/Random.aspx</a>). Randomizer.org also offers a useful random number generator (<a class="link" target="_blank" href="http://randomizer.org">http://randomizer.org</a>).</p>
<p class="para editable block" id="blackstone_1.0-ch07_s03_s02_p03">As you might have guessed, drawing a simple random sample can be quite tedious. <span class="margin_term"><a class="glossterm">Systematic sampling</a><span class="glossdef">A researcher divides a study population into relevant subgroups then draws a sample from each subgroup.</span></span> techniques are somewhat less tedious but offer the benefits of a random sample. As with simple random samples, you must be able to produce a list of every one of your population elements. Once you’ve done that, to draw a systematic sample you’d simply select every <em class="emphasis">k</em>th element on your list. But what is <em class="emphasis">k</em>, and where on the list of population elements does one begin the selection process? <em class="emphasis">k</em> is your <span class="margin_term"><a class="glossterm">selection interval</a><span class="glossdef">The distance between elements selected for inclusion in a study.</span></span> or the distance between the elements you select for inclusion in your study. To begin the selection process, you’ll need to figure out how many elements you wish to include in your sample. Let’s say you want to interview 25 fraternity members on your campus, and there are 100 men on campus who are members of fraternities. In this case, your selection interval, or <em class="emphasis">k</em>, is 4. To arrive at 4, simply divide the total number of population elements by your desired sample size. This process is represented in <a class="xref" href="#blackstone_1.0-ch07_s03_s02_f02">Figure 7.5 "Formula for Determining Selection Interval for Systematic Sample"</a>.</p>
<div class="figure large editable block" id="blackstone_1.0-ch07_s03_s02_f02">
<p class="title"><span class="title-prefix">Figure 7.5</span> Formula for Determining Selection Interval for Systematic Sample</p>
<img src="section_10/ffba99f3272c4ab03383a3c484d2e046.jpg">
</div>
<p class="para editable block" id="blackstone_1.0-ch07_s03_s02_p04">To determine where on your list of population elements to begin selecting the names of the 25 men you will interview, select a random number between 1 and <em class="emphasis">k</em>, and begin there. If we randomly select 3 as our starting point, we’d begin by selecting the third fraternity member on the list and then select every fourth member from there. This might be easier to understand if you can see it visually. <a class="xref" href="#blackstone_1.0-ch07_s03_s02_t01">Table 7.2 "Systematic Sample of 25 Fraternity Members"</a> lists the names of our hypothetical 100 fraternity members on campus. You’ll see that the third name on the list has been selected for inclusion in our hypothetical study, as has every fourth name after that. A total of 25 names have been selected.</p>
<div class="table block" id="blackstone_1.0-ch07_s03_s02_t01" frame="all">
<p class="title"><span class="title-prefix">Table 7.2</span> Systematic Sample of 25 Fraternity Members</p>
<table cellpadding="0" cellspacing="0">
<thead>
<tr>
<th>Number</th>
<th>Name</th>
<th>Include in study?</th>
<th></th>
<th>Number</th>
<th>Name</th>
<th>Include in study?</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Jacob</td>
<td></td>
<td rowspan="50"></td>
<td>51</td>
<td>Blake</td>
<td>Yes</td>
</tr>
<tr>
<td>2</td>
<td>Ethan</td>
<td></td>
<td>52</td>
<td>Oliver</td>
<td></td>
</tr>
<tr>
<td>3</td>
<td>Michael</td>
<td>Yes</td>
<td>53</td>
<td>Cole</td>
<td></td>
</tr>
<tr>
<td>4</td>
<td>Jayden</td>
<td></td>
<td>54</td>
<td>Carlos</td>
<td></td>
</tr>
<tr>
<td>5</td>
<td>William</td>
<td></td>
<td>55</td>
<td>Jaden</td>
<td>Yes</td>
</tr>
<tr>
<td>6</td>
<td>Alexander</td>
<td></td>
<td>56</td>
<td>Jesus</td>
<td></td>
</tr>
<tr>
<td>7</td>
<td>Noah</td>
<td>Yes</td>
<td>57</td>
<td>Alex</td>
<td></td>
</tr>
<tr>
<td>8</td>
<td>Daniel</td>
<td></td>
<td>58</td>
<td>Aidan</td>
<td></td>
</tr>
<tr>
<td>9</td>
<td>Aiden</td>
<td></td>
<td>59</td>
<td>Eric</td>
<td>Yes</td>
</tr>
<tr>
<td>10</td>
<td>Anthony</td>
<td></td>
<td>60</td>
<td>Hayden</td>
<td></td>
</tr>
<tr>
<td>11</td>
<td>Joshua</td>
<td>Yes</td>
<td>61</td>
<td>Brian</td>
<td></td>
</tr>
<tr>
<td>12</td>
<td>Mason</td>
<td></td>
<td>62</td>
<td>Max</td>
<td></td>
</tr>
<tr>
<td>13</td>
<td>Christopher</td>
<td></td>
<td>63</td>
<td>Jaxon</td>
<td>Yes</td>
</tr>
<tr>
<td>14</td>
<td>Andrew</td>
<td></td>
<td>64</td>
<td>Brian</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="informaltable editable block" id="blackstone_1.0-ch07_s03_s02_t11" frame="all">
<table cellpadding="0" cellspacing="0">
<thead>
<tr>
<th>Number</th>
<th>Name</th>
<th>Include in study?</th>
<th></th>
<th>Number</th>
<th>Name</th>
<th>Include in study?</th>
</tr>
</thead>
<tbody>
<tr>
<td>15</td>
<td>David</td>
<td>Yes</td>
<td>65</td>
<td>Matthew</td>
<td></td>
<td></td>
</tr>
<tr>
<td>16</td>
<td>Logan</td>
<td></td>
<td>66</td>
<td>Elijah</td>
<td></td>
<td></td>
</tr>
<tr>
<td>17</td>
<td>James</td>
<td></td>
<td>67</td>
<td>Joseph</td>
<td>Yes</td>
<td></td>
</tr>
<tr>
<td>18</td>
<td>Gabriel</td>
<td></td>
<td>68</td>
<td>Benjamin</td>
<td></td>
<td></td>
</tr>
<tr>
<td>19</td>
<td>Ryan</td>
<td>Yes</td>
<td>69</td>
<td>Samuel</td>
<td></td>
<td></td>
</tr>
<tr>
<td>20</td>
<td>Jackson</td>
<td></td>
<td>70</td>
<td>John</td>
<td></td>
<td></td>
</tr>
<tr>
<td>21</td>
<td>Nathan</td>
<td></td>
<td>71</td>
<td>Jonathan</td>
<td>Yes</td>
<td></td>
</tr>
<tr>
<td>22</td>
<td>Christian</td>
<td></td>
<td>72</td>
<td>Liam</td>
<td></td>
<td></td>
</tr>
<tr>
<td>23</td>
<td>Dylan</td>
<td>Yes</td>
<td>73</td>
<td>Landon</td>
<td></td>
<td></td>
</tr>
<tr>
<td>24</td>
<td>Caleb</td>
<td></td>
<td>74</td>
<td>Tyler</td>
<td></td>
<td></td>
</tr>
<tr>
<td>25</td>
<td>Lucas</td>
<td></td>
<td>75</td>
<td>Evan</td>
<td>Yes</td>
<td></td>
</tr>
<tr>
<td>26</td>
<td>Gavin</td>
<td></td>
<td>76</td>
<td>Nicholas</td>
<td></td>
<td></td>
</tr>
<tr>
<td>27</td>
<td>Isaac</td>
<td>Yes</td>
<td>77</td>
<td>Braden</td>
<td></td>
<td></td>
</tr>
<tr>
<td>28</td>
<td>Luke</td>
<td></td>
<td>78</td>
<td>Angel</td>
<td></td>
<td></td>
</tr>
<tr>
<td>29</td>
<td>Brandon</td>
<td></td>
<td>79</td>
<td>Jack</td>
<td>Yes</td>
<td></td>
</tr>
<tr>
<td>30</td>
<td>Isaiah</td>
<td></td>
<td>80</td>
<td>Jordan</td>
<td></td>
<td></td>
</tr>
<tr>
<td>31</td>
<td>Owen</td>
<td>Yes</td>
<td>81</td>
<td>Carter</td>
<td></td>
<td></td>
</tr>
<tr>
<td>32</td>
<td>Conner</td>
<td></td>
<td>82</td>
<td>Justin</td>
<td></td>
<td></td>
</tr>
<tr>
<td>33</td>
<td>Jose</td>
<td></td>
<td>83</td>
<td>Jeremiah</td>
<td>Yes</td>
<td></td>
</tr>
<tr>
<td>34</td>
<td>Julian</td>
<td></td>
<td>84</td>
<td>Robert</td>
<td></td>
<td></td>
</tr>
<tr>
<td>35</td>
<td>Aaron</td>
<td>Yes</td>
<td>85</td>
<td>Adrian</td>
<td></td>
<td></td>
</tr>
<tr>
<td>36</td>
<td>Wyatt</td>
<td></td>
<td>86</td>
<td>Kevin</td>
<td></td>
<td></td>
</tr>
<tr>
<td>37</td>
<td>Hunter</td>
<td></td>
<td>87</td>
<td>Cameron</td>
<td>Yes</td>
<td></td>
</tr>
<tr>
<td>38</td>
<td>Zachary</td>
<td></td>
<td>88</td>
<td>Thomas</td>
<td></td>
<td></td>
</tr>
<tr>
<td>39</td>
<td>Charles</td>
<td>Yes</td>
<td>89</td>
<td>Austin</td>
<td></td>
<td></td>
</tr>
<tr>
<td>40</td>
<td>Eli</td>
<td></td>
<td>90</td>
<td>Chase</td>
<td></td>
<td></td>
</tr>
<tr>
<td>41</td>
<td>Henry</td>
<td></td>
<td>91</td>
<td>Sebastian</td>
<td>Yes</td>
<td></td>
</tr>
<tr>
<td>42</td>
<td>Jason</td>
<td></td>
<td>92</td>
<td>Levi</td>
<td></td>
<td></td>
</tr>
<tr>
<td>43</td>
<td>Xavier</td>
<td>Yes</td>
<td>93</td>
<td>Ian</td>
<td></td>
<td></td>
</tr>
<tr>
<td>44</td>
<td>Colton</td>
<td></td>
<td>94</td>
<td>Dominic</td>
<td></td>
<td></td>
</tr>
<tr>
<td>45</td>
<td>Juan</td>
<td></td>
<td>95</td>
<td>Cooper</td>
<td>Yes</td>
<td></td>
</tr>
<tr>
<td>46</td>
<td>Josiah</td>
<td></td>
<td>96</td>
<td>Luis</td>
<td></td>
<td></td>
</tr>
<tr>
<td>47</td>
<td>Ayden</td>
<td>Yes</td>
<td>97</td>
<td>Carson</td>
<td></td>
<td></td>
</tr>
<tr>
<td>48</td>
<td>Adam</td>
<td></td>
<td>98</td>
<td>Nathaniel</td>
<td></td>
<td></td>
</tr>
<tr>
<td>49</td>
<td>Brody</td>
<td></td>
<td>99</td>
<td>Tristan</td>
<td>Yes</td>
<td></td>
</tr>
<tr>
<td>50</td>
<td>Diego</td>
<td></td>
<td>100</td>
<td>Parker</td>
<td></td>
<td></td>
</tr>
</tbody>
<tfoot>
<tr>
<th colspan="7">
<em class="emphasis">Note:</em> In case you’re wondering how I came up with 100 unique names for this table, I’ll let you in on a little secret: lists of popular baby names can be great resources for researchers. I used the list of top 100 names for boys based on Social Security Administration statistics for this table. I often use baby name lists to come up with pseudonyms for field research subjects and interview participants. See Family Education. (n.d.). Name lab. Retrieved from <a class="link" target="_blank" href="http://baby-names.familyeducation.com/popular-names/boys">http://baby-names.familyeducation.com/popular-names/boys</a>.</th>
</tr>
</tfoot>
</table>
</div>
<p class="para editable block" id="blackstone_1.0-ch07_s03_s02_p05">There is one clear instance in which systematic sampling should not be employed. If your sampling frame has any pattern to it, you could inadvertently introduce bias into your sample by using a systemic sampling strategy. This is sometimes referred to as the problem of <span class="margin_term"><a class="glossterm">periodicity</a><span class="glossdef">The tendency for a pattern to occur at regular intervals.</span></span>. Periodicity refers to the tendency for a pattern to occur at regular intervals. Let’s say, for example, that you wanted to observe how people use the outdoor public spaces on your campus. Perhaps you need to have your observations completed within 28 days and you wish to conduct four observations on randomly chosen days. <a class="xref" href="#blackstone_1.0-ch07_s03_s02_t02">Table 7.3 "Systematic Sample of Observation Days"</a> shows a list of the population elements for this example. To determine which days we’ll conduct our observations, we’ll need to determine our selection interval. As you’ll recall from the preceding paragraphs, to do so we must divide our population size, in this case 28 days, by our desired sample size, in this case 4 days. This formula leads us to a selection interval of 7. If we randomly select 2 as our starting point and select every seventh day after that, we’ll wind up with a total of 4 days on which to conduct our observations. You’ll see how that works out in the following table.</p>
<div class="table block" id="blackstone_1.0-ch07_s03_s02_t02" frame="all">
<p class="title"><span class="title-prefix">Table 7.3</span> Systematic Sample of Observation Days</p>
<table cellpadding="0" cellspacing="0">
<thead>
<tr>
<th>Number</th>
<th>Day</th>
<th>Include in study?</th>
<th></th>
<th>Number</th>
<th>Day</th>
<th>Include in study?</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Monday</td>
<td></td>
<td rowspan="14"></td>
<td>15</td>
<td>Monday</td>
<td></td>
</tr>
<tr>
<td>2</td>
<td>Tuesday</td>
<td>Yes</td>
<td>16</td>
<td>Tuesday</td>
<td>Yes</td>
</tr>
<tr>
<td>3</td>
<td>Wednesday</td>
<td></td>
<td>17</td>
<td>Wednesday</td>
<td></td>
</tr>
<tr>
<td>4</td>
<td>Thursday</td>
<td></td>
<td>18</td>
<td>Thursday</td>
<td></td>
</tr>
<tr>
<td>5</td>
<td>Friday</td>
<td></td>
<td>19</td>
<td>Friday</td>
<td></td>
</tr>
<tr>
<td>6</td>
<td>Saturday</td>
<td></td>
<td>20</td>
<td>Saturday</td>
<td></td>
</tr>
<tr>
<td>7</td>
<td>Sunday</td>
<td></td>
<td>21</td>
<td>Sunday</td>
<td></td>
</tr>
<tr>
<td>8</td>
<td>Monday</td>
<td></td>
<td>22</td>
<td>Monday</td>
<td></td>
</tr>
<tr>
<td>9</td>
<td>Tuesday</td>
<td>Yes</td>
<td>23</td>
<td>Tuesday</td>
<td>Yes</td>
</tr>
<tr>
<td>10</td>
<td>Wednesday</td>
<td></td>
<td>24</td>
<td>Wednesday</td>
<td></td>
</tr>
<tr>
<td>11</td>
<td>Thursday</td>
<td></td>
<td>25</td>
<td>Thursday</td>
<td></td>
</tr>
<tr>
<td>12</td>
<td>Friday</td>
<td></td>
<td>26</td>
<td>Friday</td>
<td></td>
</tr>
<tr>
<td>13</td>
<td>Saturday</td>
<td></td>
<td>27</td>
<td>Saturday</td>
<td></td>
</tr>
<tr>
<td>14</td>
<td>Sunday</td>
<td></td>
<td>28</td>
<td>Sunday</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<p class="para editable block" id="blackstone_1.0-ch07_s03_s02_p06">Do you notice any problems with our selection of observation days? Apparently we’ll only be observing on Tuesdays. As you have probably figured out, that isn’t such a good plan if we really wish to understand how public spaces on campus are used. My guess is that weekend use probably differs from weekday use, and that use may even vary during the week, just as class schedules do. In cases such as this, where the sampling frame is cyclical, it would be better to use a <span class="margin_term"><a class="glossterm">stratified sampling technique</a><span class="glossdef">A researcher divides the study population into relevant subgroups then draws a sample from within each subgroup.</span></span>. In stratified sampling, a researcher will divide the study population into relevant subgroups and <em class="emphasis">then</em> draw a sample from each subgroup. In this example, we might wish to first divide our sampling frame into two lists: weekend days and weekdays. Once we have our two lists, we can then apply either simple random or systematic sampling techniques to each subgroup.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s03_s02_p07">Stratified sampling is a good technique to use when, as in our example, a subgroup of interest makes up a relatively small proportion of the overall sample. In our example of a study of use of public space on campus, we want to be sure to include weekdays and weekends in our sample, but because weekends make up less than a third of an entire week, there’s a chance that a simple random or systematic strategy would not yield sufficient weekend observation days. As you might imagine, stratified sampling is even more useful in cases where a subgroup makes up an even smaller proportion of the study population, say, for example, if we want to be sure to include both men’s and women’s perspectives in a study, but men make up only a small percentage of the population. There’s a chance simple random or systematic sampling strategy might not yield any male participants, but by using stratified sampling, we could ensure that our sample contained the proportion of men that is reflective of the larger population.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s03_s02_p08">Up to this point in our discussion of probability samples, we’ve assumed that researchers will be able to access a list of population elements in order to create a sampling frame. This, as you might imagine, is not always the case. Let’s say, for example, that you wish to conduct a study of hairstyle preferences across the United States. Just imagine trying to create a list of every single person with (and without) hair in the country. Basically, we’re talking about a list of every person in the country. Even if you could find a way to generate such a list, attempting to do so might not be the most practical use of your time or resources. When this is the case, researchers turn to cluster sampling. <span class="margin_term"><a class="glossterm">Cluster sampling</a><span class="glossdef">A researcher begins by sampling groups of population elements and then selects elements from within those groups.</span></span> occurs when a researcher begins by sampling groups (or clusters) of population elements and then selects elements from within those groups.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s03_s02_p09">Let’s take a look at a couple more examples. Perhaps you are interested in the workplace experiences of public librarians. Chances are good that obtaining a list of all librarians that work for public libraries would be rather difficult. But I’ll bet you could come up with a list of all public libraries without too much hassle. Thus you could draw a random sample of libraries (your cluster) and then draw another random sample of elements (in this case, librarians) from within the libraries you initially selected. Cluster sampling works in stages. In this example, we sampled in two stages. As you might have guessed, sampling in multiple stages does introduce the possibility of greater error (each stage is subject to its own sampling error), but it is nevertheless a highly efficient method.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s03_s02_p10">Jessica Holt and Wayne Gillespie (2008)<span class="footnote" id="blackstone_1.0-fn07_008">Holt, J. L., & Gillespie, W. (2008). Intergenerational transmission of violence, threatened egoism, and reciprocity: A test of multiple pychosocial factors affecting intimate partner violence. <em class="emphasis">American Journal of Criminal Justice, 33</em>, 252–266.</span> used cluster sampling in their study of students’ experiences with violence in intimate relationships. Specifically, the researchers randomly selected 14 classes on their campus and then drew a random subsample of students from those classes. But you probably know from your experience with college classes that not all classes are the same size. So if Holt and Gillespie had simply randomly selected 14 classes and then selected the same number of students from each class to complete their survey, then students in the smaller of those classes would have had a greater chance of being selected for the study than students in the larger classes. Keep in mind with random sampling the goal is to make sure that each element has the same chance of being selected. When clusters are of different sizes, as in the example of sampling college classes, researchers often use a method called <span class="margin_term"><a class="glossterm">probability proportionate to size</a><span class="glossdef">A cluster sampling technique in which each cluster is given a chance of selection based on its size.</span></span> (PPS). This means that they take into account that their clusters are of different sizes. They do this by giving clusters different chances of being selected based on their size so that each element within those clusters winds up having an equal chance of being selected.</p>
<div class="table block" id="blackstone_1.0-ch07_s03_s02_t03" frame="all">
<p class="title"><span class="title-prefix">Table 7.4</span> Types of Probability Samples</p>
<table cellpadding="0" cellspacing="0">
<thead>
<tr>
<th>Sample type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>Simple random</td>
<td>Researcher randomly selects elements from sampling frame.</td>
</tr>
<tr>
<td>Systematic</td>
<td>Researcher selects every <em class="emphasis">k</em>th element from sampling frame.</td>
</tr>
<tr>
<td>Stratified</td>
<td>Researcher creates subgroups then randomly selects elements from each subgroup.</td>
</tr>
<tr>
<td>Cluster</td>
<td>Researcher randomly selects clusters then randomly selects elements from selected clusters.</td>
</tr>
</tbody>
</table>
</div>
<div class="key_takeaways editable block" id="blackstone_1.0-ch07_s03_s02_n01">
<h3 class="title">Key Takeaways</h3>
<ul class="itemizedlist" id="blackstone_1.0-ch07_s03_s02_l01">
<li>In probability sampling, the aim is to identify a sample that resembles the population from which it was drawn.</li>
<li>There are several types of probability samples including simple random samples, systematic samples, stratified samples, and cluster samples.</li>
</ul>
</div>
<div class="exercises editable block" id="blackstone_1.0-ch07_s03_s02_n02">
<h3 class="title">Exercises</h3>
<ol class="orderedlist" id="blackstone_1.0-ch07_s03_s02_l02">
<li>Imagine that you are about to conduct a study of people’s use of public parks. Explain how you could employ each of the probability sampling techniques described earlier to recruit a sample for your study.</li>
<li>Of the four probability sample types described, which seems strongest to you? Which seems weakest? Explain.</li>
</ol>
</div>
</div>
</div>
<div class="section" id="blackstone_1.0-ch07_s04" condition="start-of-chunk" version="5.0" lang="en">
<h2 class="title editable block">
<span class="title-prefix">7.4</span> A Word of Caution: Questions to Ask About Samples</h2>
<div class="learning_objectives editable block" id="blackstone_1.0-ch07_s04_n01">
<h3 class="title">Learning Objectives</h3>
<ol class="orderedlist" id="blackstone_1.0-ch07_s04_l01">
<li>Identify several questions we should ask about samples when reading the results of research.</li>
<li>Name some tenets worth keeping in mind with respect to responsibly reading research findings.</li>
</ol>
</div>
<p class="para editable block" id="blackstone_1.0-ch07_s04_p01">We read and hear about research results so often that we might overlook the need to ask important questions about where research participants come from and how they are identified for inclusion in a research project. It is easy to focus only on findings when we’re busy and when the really interesting stuff is in a study’s conclusions, not its procedures. But now that you have some familiarity with the variety of procedures for selecting study participants, you are equipped to ask some very important questions about the findings you read and to be a more responsible consumer of research.</p>
<div class="section" id="blackstone_1.0-ch07_s04_s01">
<h2 class="title editable block">Who Sampled, How Sampled, and for What Purpose?</h2>
<p class="para editable block" id="blackstone_1.0-ch07_s04_s01_p01">Have you ever been a participant in someone’s research? If you have ever taken an introductory psychology or sociology class at a large university, that’s probably a silly question to ask. Social science researchers on college campuses have a luxury that researchers elsewhere may not share—they have access to a whole bunch of (presumably) willing and able human guinea pigs. But that luxury comes at a cost—sample representativeness. One study of top academic journals in psychology found that over two-thirds (68%) of participants in studies published by those journals were based on samples drawn in the United States (Arnett, 2008).<span class="footnote" id="blackstone_1.0-fn07_009">Arnett, J. J. (2008). The neglected 95%: Why American psychology needs to become less American. <em class="emphasis">American Psychologist, 63</em>, 602–614.</span> Further, the study found that two-thirds of the work that derived from US samples published in the <em class="emphasis">Journal of Personality and Social Psychology</em> was based on samples made up entirely of American undergraduates taking psychology courses.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s04_s01_p02">These findings certainly beg the question: What do we actually learn from social scientific studies and about whom do we learn it? That is exactly the concern raised by Joseph Henrich and colleagues (Henrich, Heine, & Norenzayan, 2010),<span class="footnote" id="blackstone_1.0-fn07_010">Henrich, J., Heine, S. J., & Norenzayan, A. (2010). The weirdest people in the world? <em class="emphasis">Behavioral and Brain Sciences, 33</em>, 61–135.</span> authors of the article “The Weirdest People in the World?” In their piece, Henrich and colleagues point out that behavioral scientists very commonly make sweeping claims about human nature based on samples drawn only from WEIRD (Western, educated, industrialized, rich, and democratic) societies, and often based on even narrower samples, as is the case with many studies relying on samples drawn from college classrooms. As it turns out, many robust findings about the nature of human behavior when it comes to fairness, cooperation, visual perception, trust, and other behaviors are based on studies that excluded participants from outside the United States and sometimes excluded anyone outside the college classroom (Begley, 2010).<span class="footnote" id="blackstone_1.0-fn07_011"><em class="emphasis">Newsweek</em> magazine published an interesting story about Henrich and his colleague’s study: Begley, S. (2010). What’s really human? The trouble with student guinea pigs. Retrieved from <a class="link" target="_blank" href="http://www.newsweek.com/2010/07/23/what-s-really-human.html">http://www.newsweek.com/2010/07/23/what-s-really-human.html</a></span> This certainly raises questions about what we really know about human behavior as opposed to US resident or US undergraduate behavior. Of course not all research findings are based on samples of WEIRD folks like college students. But even then it would behoove us to pay attention to the population on which studies are based and the claims that are being made about to whom those studies apply.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s04_s01_p03">In the preceding discussion, the concern is with researchers making claims about populations other than those from which their samples were drawn. A related, but slightly different, potential concern is <span class="margin_term"><a class="glossterm">sampling bias</a><span class="glossdef">Occurs when the elements selected for inclusion in a study do not represent the larger population from which they were drawn.</span></span>. Bias in sampling occurs when the elements selected for inclusion in a study do not represent the larger population from which they were drawn. For example, a poll conducted online by a newspaper asking for the public’s opinion about some local issue will certainly not represent the public since those without access to computers or the Internet, those who do not read that paper’s website, and those who do not have the time or interest will not answer the question.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s04_s01_p04">Another thing to keep in mind is that just because a sample may be representative in all respects that a researcher thinks are relevant, there may be aspects that are relevant that didn’t occur to the researcher when she was drawing her sample. You might not think that a person’s phone would have much to do with their voting preferences, for example. But had pollsters making predictions about the results of the 2008 presidential election not been careful to include both cell phone–only and landline households in their surveys, it is possible that their predictions would have underestimated Barack Obama’s lead over John McCain because Obama was much more popular among cell-only users than McCain (Keeter, Dimock, & Christian, 2008).<span class="footnote" id="blackstone_1.0-fn07_012">Keeter, S., Dimock, M., & Christian, L. (2008). Calling cell phones in ’08 pre-election polls. <em class="emphasis">The Pew Research Center for the People and the Press</em>. Retrieved from <a class="link" target="_blank" href="http://people-press.org/http://people-press.org/files/legacy-pdf/cell-phone-commentary.pdf">http://people-press.org/http://people-press.org/files/legacy-pdf/cell-phone-commentary.pdf</a></span></p>
<p class="para editable block" id="blackstone_1.0-ch07_s04_s01_p05">So how do we know when we can count on results that are being reported to us? While there might not be any magic or always-true rules we can apply, there are a couple of things we can keep in mind as we read the claims researchers make about their findings. First, remember that sample quality is determined only by the sample actually obtained, not by the sampling method itself. A researcher may set out to administer a survey to a representative sample by correctly employing a random selection technique, but if only a handful of the people sampled actually respond to the survey, the researcher will have to be very careful about the claims he can make about his survey findings. Another thing to keep in mind, as demonstrated by the preceding discussion, is that researchers may be drawn to talking about implications of their findings as though they apply to some group other than the population actually sampled. Though this tendency is usually quite innocent and does not come from a place of malice, it is all too tempting a way to talk about findings; as consumers of those findings, it is our responsibility to be attentive to this sort of (likely unintentional) bait and switch.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s04_s01_p06">Finally, keep in mind that a sample that allows for comparisons of theoretically important concepts or variables is certainly better than one that does not allow for such comparisons. In a study based on a nonrepresentative sample, for example, we can learn about the strength of our social theories by comparing relevant aspects of social processes. Klawiter’s previously mentioned study (1999)<span class="footnote" id="blackstone_1.0-fn07_013">Klawiter, M. (1999). Racing for the cure, walking women, and toxic touring: Mapping cultures of action within the Bay Area terrain of breast cancer. <em class="emphasis">Social Problems, 46</em>, 104–126.</span> of three carefully chosen breast cancer activist groups allowed her to contribute to our understandings of activism by addressing potential weaknesses in theories of social change.</p>
<p class="para editable block" id="blackstone_1.0-ch07_s04_s01_p07">At their core, questions about sample quality should address who has been sampled, how they were sampled, and for what purpose they were sampled. Being able to answer those questions will help you better understand, and more responsibly read, research results.</p>
<div class="key_takeaways editable block" id="blackstone_1.0-ch07_s04_s01_n01">
<h3 class="title">Key Takeaways</h3>
<ul class="itemizedlist" id="blackstone_1.0-ch07_s04_s01_l01">
<li>Sometimes researchers may make claims about populations other than those from whom their samples were drawn; other times they may make claims about a population based on a sample that is not representative. As consumers of research, we should be attentive to both possibilities.</li>
<li>A researcher’s findings need not be generalizable to be valuable; samples that allow for comparisons of theoretically important concepts or variables may yield findings that contribute to our social theories and our understandings of social processes.</li>
</ul>
</div>
<div class="exercises editable block" id="blackstone_1.0-ch07_s04_s01_n02">
<h3 class="title">Exercise</h3>
<ol class="orderedlist" id="blackstone_1.0-ch07_s04_s01_l02">
<li>Find any news story or blog entry that describes results from any social scientific study. How much detail is reported about the study’s sample? What sorts of claims are being made about the study’s findings, and to whom do they apply?</li>
</ol>
</div>
</div>
</div>
</div>
<div id=navbar-bottom class="navbar">
<div class="navbar-part left">
<a href="s09-defining-and-measuring-concept.html"><img src="shared/images/batch-left.png"></a> <a href="s09-defining-and-measuring-concept.html">Previous Chapter</a>
</div>
<div class="navbar-part middle">
<a href="index.html"><img src="shared/images/batch-up.png"></a> <a href="index.html">Table of Contents</a>
</div>
<div class="navbar-part right">
<a href="s11-survey-research-a-quantitative.html">Next Chapter</a> <a href="s11-survey-research-a-quantitative.html"><img src="shared/images/batch-right.png"></a>
</div>
</div>
</div>
<script type="text/javascript" src="shared/book.js"></script>
</body>
</html>