Bias#

There’s something happening here, but what it is ain’t exactly clear.

  • Buffalo Springfield

In this lab, you will perform some graphical analysis on a famously biased data set and use statistical reasoning to draw conclusions about the method of observation used to generate the data.

Instructions#

  1. Download the csv dataset in the Dataset section and place it in the Linux Files folder on your folder system where you save your .py scripts.

  2. Create a Python .py script named TNAME_project_four.py in your Linux Files folder on your file system. You can do this by opening an IDLE session, creating a new file and then saving it. Replace NAME with your name.

  3. Create a docstring at the very top of the script file. Keep all written answers in this area of the script.

  4. Read the Background section.

  5. Read the Loading In Data section.

  6. Load in the data from the .csv file using the technique outlined in the Loading In Data section.

  7. Perform all exercises and answer all questions in the Project section. Label your script with comments as indicated in the instructions of each problem.

  8. When you are done,zip your script and the csv file in a zip file named NAME_project_four.zip

  9. Upload the zip file to the Google Classroom Project Four Assignment.

Loading In Data#

The following code snippet will load in a CSV spreadsheet named example.csv, parse it into a list and then print it to screen, assuming that CSV file is saved in the same folder as your script. Modify this code snippet to fit the datasets in this lab and then use it to load in the provided datasets in Datasets section.

import csv

# read in data
with open('example.csv') as csv_file:
    csv_reader = csv.reader(csv_file)
    raw_data = [ row for row in csv_reader ]

# separate headers from data
headers = raw_data[0]
columns = raw_data[1:]

# grab first column from csv file and ensure it's a number (not a string)
column_1 = [ float(row[0]) for row in columns ]

print(column_1)

Background#

In the years 1969, 1970, 1971 and 1972, the Selective Service System in the United States held a draft lottery by order of President Lyndon B. Johnson for men born between the dates of January 1, 1944 and December 31, 1950.

Individuals born between these dates were to be selected at random and drafted into military service to fight in the Vietnam War.

Method of Selection#

The method used to select individuals for service is highly controversial. Many argued it was not truly random and unfairly selected certain groups of individuals over others. In this project we are going to investigate these claims and see if there is any statistical evidence to suggest they are true.

To do this, we will need to understand how draftees were selected.

In attempt to randomize the selection, the Selective Service System held a draft lottery. 365 days of the year were printed on sheets of paper and placed in a shoebox,

{ January 1, January 2, … , Feburary 1, February 2, … , December 30, December 31 }

Slips of paper were then selected at random and anyone of eligible age who had a birthday on the date indicated would be drafted. The important point is individuals who shared the same birthday would be drafted at the same time. As example, two men who had the birthdays April 5 th, 1946 and April 5 th, 1947 would both be drafted in the event a slip of paper “April 5” was selected.

Project#

  1. Discuss the following questions. Save your answer in the docstring

    1. Is the selection method used for the draft random? Why or why not?

    2. If the selection method used for the draft were truly random, what shape would you expect a frequency distribution of the sample to have?

    3. Given the information provided on the selection method, what shape do you expect a frequency distribution of the sample to have?

    4. What are some possible sources of bias in the draft lottery? List the cases and identify the type of bias in each case.

  2. During the first year of the draft, 1969, birthdates were put into the shoebox in ascending order of month. In other words, the birth dates in the month of December were first put in the bottom of the shoebox, then birth dates in November were placed on top of the December birth dates, then October birth dates were placed on top of the November birth dates, and so on up to January. The slips of paper were not mixed any further before the draft was selected. Using this new information, answer the following questions. Save your answer in the docstring

    1. How does this information affect your answer to #1a?

    2. How does this information affect your answer to #1c?

    3. How does this information affect your answer to #1d?

This selection method was later revised in 1970, 1971 and 1972, once the distribution of data was examined in more detail.

  1. Using the birth month of the drafted individual as the bins, construct histograms for the years 1969, 1970, 1971 and 1972.

  1. Based on the histograms constructed, describe the shape of the distribution for each year’s draft lottery. Save your answer in the docstring

    1. Are the graphs skewed, uniform, normal or bimodal?

    2. What is the mode of the birth month for each year?

    3. What can we conclude about the relative likelihood of a male with a birthday in January being drafted versus a male with a birthday in December being drafted for the year of 1969? Does this same result appear to hold for 1970, 1971 and 1972?

    4. Discuss the results. Was the draft lottery fair? If not, why not? If so, why? Justify your answer.

Dataset#

You can download the full dataset here.

The following table is the a preview of the data you will be using for this project.

Vietnam Draft Lottery Data#

M

D

N69

N70

N71

N72

1

1

305

133

207

150

1

2

159

195

225

328

1

3

251

336

246

42

1

4

215

99

264

28

1

5

101

33

265

338

11

2

34

205

190

214

11

3

348

294

300

232

11

4

266

39

166

339

11

5

310

286

211

223

11

6

76

245

186

211

11

7

51

72

17

299

11

8

97

119

260

312

11

9

80

176

237

151

11

10

282

63

227

257

11

11

46

123

244

159

11

12

66

255

259

66

11

13

126

272

247

124

11

14

127

11

316

237

The meaning of the columns is as follows.

M represents the birth month of the draftee,

M = 1, 2, 3, … , 11, 12

D represents the birth day of the draftee,

D = 1, 2, 3, … , 30, 31

And N69, N70, N71 and N72 represent the number of individuals selected with a given birth date in the years 1969, 1970, 1971 and 1972, respectively.

Cleaning the Data Set#

The experimental unit in this lab is a date. Each entry in the datasets corresponds to a particular birthdate, i.e. a month and day. For example, the first row of the dataset looks like,

M | D | N69 | N70 | N71 | N72 |
1 | 1 | 305 | 133 | 207 | 150 |
1 | 2 | 159 | 195 | 225 | 328 |

The lab is asking to group the data into monthly classes so the sample can be visualized with a histogram. Since we are only interested in birth months, we may ignore the D column. That leaves us with our class data broken up across multiple rows of the list. We will need to manually group the data to calculate the total number of draftees per month.

In other words, we will need to step (iterate) over the dataset and look at each row. As we do so, we will need to check if the first column M is 1, 2, 3, …, 11 or 12. Then, based on the value of the first column M, we will grab the entries from the N69, N70, N71 and N72 columns and add them to the corresponding monthly totals.

To re-iterate, to clean the data, we will need to perform the following steps:

  1. create a list, named data_1969, of twelve 0’s, [0, 0, 0, ... , 0, 0], one for each month.

  2. step through column_1 with the row_number.

  3. grab the corresponding entry of the third column, column_3[row_number]

  4. add the value of the third column to the list entry in data_1969 that represents that month.

The following code snippet implements this algorithm, assuming you have the M column stored in column_1 and the N69 column stored in column_3. Use this logic in the lab to clean your data,

data_1969 = [ 0 ] * 12

for row_number, entry in enumerate(column_1):
    data_1969[int(entry) - 1] += column_3[row_number]