-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFinal-Final.tex
More file actions
1843 lines (1751 loc) · 74.9 KB
/
Final-Final.tex
File metadata and controls
1843 lines (1751 loc) · 74.9 KB
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
% Options for packages loaded elsewhere
\PassOptionsToPackage{unicode}{hyperref}
\PassOptionsToPackage{hyphens}{url}
%
\documentclass[
]{article}
\usepackage{lmodern}
\usepackage{amsmath}
\usepackage{ifxetex,ifluatex}
\ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{textcomp} % provide euro and other symbols
\usepackage{amssymb}
\else % if luatex or xetex
\usepackage{unicode-math}
\defaultfontfeatures{Scale=MatchLowercase}
\defaultfontfeatures[\rmfamily]{Ligatures=TeX,Scale=1}
\fi
% Use upquote if available, for straight quotes in verbatim environments
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
\IfFileExists{microtype.sty}{% use microtype if available
\usepackage[]{microtype}
\UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts
}{}
\makeatletter
\@ifundefined{KOMAClassName}{% if non-KOMA class
\IfFileExists{parskip.sty}{%
\usepackage{parskip}
}{% else
\setlength{\parindent}{0pt}
\setlength{\parskip}{6pt plus 2pt minus 1pt}}
}{% if KOMA class
\KOMAoptions{parskip=half}}
\makeatother
\usepackage{xcolor}
\IfFileExists{xurl.sty}{\usepackage{xurl}}{} % add URL line breaks if available
\IfFileExists{bookmark.sty}{\usepackage{bookmark}}{\usepackage{hyperref}}
\hypersetup{
hidelinks,
pdfcreator={LaTeX via pandoc}}
\urlstyle{same} % disable monospaced font for URLs
\usepackage[margin=1in]{geometry}
\usepackage{longtable,booktabs}
\usepackage{calc} % for calculating minipage widths
% Correct order of tables after \paragraph or \subparagraph
\usepackage{etoolbox}
\makeatletter
\patchcmd\longtable{\par}{\if@noskipsec\mbox{}\fi\par}{}{}
\makeatother
% Allow footnotes in longtable head/foot
\IfFileExists{footnotehyper.sty}{\usepackage{footnotehyper}}{\usepackage{footnote}}
\makesavenoteenv{longtable}
\usepackage{graphicx}
\makeatletter
\def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi}
\def\maxheight{\ifdim\Gin@nat@height>\textheight\textheight\else\Gin@nat@height\fi}
\makeatother
% Scale images if necessary, so that they will not overflow the page
% margins by default, and it is still possible to overwrite the defaults
% using explicit options in \includegraphics[width, height, ...]{}
\setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio}
% Set default figure placement to htbp
\makeatletter
\def\fps@figure{htbp}
\makeatother
\setlength{\emergencystretch}{3em} % prevent overfull lines
\providecommand{\tightlist}{%
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
\setcounter{secnumdepth}{-\maxdimen} % remove section numbering
\ifluatex
\usepackage{selnolig} % disable illegal ligatures
\fi
\author{}
\date{\vspace{-2.5em}}
\begin{document}
\hypertarget{data-processing-and-summarization}{%
\section{Data Processing and
Summarization}\label{data-processing-and-summarization}}
The NLSY97 is a national longitudinal survey initially performed in
1997. The survey consists of a nationally representative sample of 8,984
men and women born in the years 1980-1984. Following the initial year,
interviews were conducted annually until 2011 and once every two years
after that. The NLSY97 collects extensive information on respondents'
labor market behavior and educational experiences as well as data on
their families and community backgrounds. This will prove a valuable
tool to assess the impact of education and other environmental factors
on the resulting economic factors like income.
Thus, it is worthwhile to examine sex-related differences between
respondents of the NLSY97 and determining if there is a significant
difference in income analyzing sex and other various factors.
To explore the income gap between men and women, a linear regression
modeling income as a linear function of gender was performed. Based on
this model performed on data representing 5089 individuals, men earned,
on average, \$15,923.90 more than females. Furthermore, this income gap
can be concluded to be highly significant based on the p-value of the
model of approximately \ensuremath{4.134829\times 10^{-45}}. This income
gap can be effectively visualized in the box plot below:
\includegraphics{Final-Final_files/figure-latex/unnamed-chunk-5-1.pdf}
We can see from the box plot the median values for mean and women's
income. Additionally the top and bottoms of those boxes represent the
1st and 3rd quartiles of the data. Roughly looking at the data, the
median income was approximately greater than or equal to 75\% of women's
income. After determining that the was indeed a significant income gap
between men and women, the next step was to explore what other factors
might contribute to this disparity. We began by investigating our data.
To investigate our data, we constructed a histogram for all of the
variables. These show the number of records that we had for each
variable. For practically all of the variables, there was a large skew
of the data. To account for this, we decided it would be helpful to
convert these variables into categories, so there was a more equal
representation. For example, the variable of days that a child attended
a religious service was approximately 33\% with 0 days, 33\% 1 day, and
the 2-7 days make up the remaining 33\%. So, we converted this to
categories of no days, one day, and multiple days. For other variables,
the split was not as evident, and the skew was shifted. For these
variables, we broke the counts into percentiles, and categorized the
groups based on that. For example, for mothers birth age, we broke the
data into quintiles, and made age range categories for them.
After categorizing our variables, we also inspected them to see if the
data made sense. There was an occurances where the data seemed to be
off, which was the biological mother's birth age. For this variable,
there were many observations of vary young children having children of
their own. To account for this, we replaced any value in this variable
that was under 10 with a NA value. We think the reason this happened was
due to data input errors
\hypertarget{methodology}{%
\section{Methodology}\label{methodology}}
The main approach to analyzing the variables was to minimize the
consequences of human interaction, meaning that the variables that were
chosen were not controlled by the respondent, such as race and gender.
The group decided to not include other variables that are measured by
the respondent's performance such as GPA in order to avoid confounding
variables for income disparities. Additionally, we decided to consider
variables that we only recorded when this survey was originally taken,
in order to eliminate choices made by respondents. With this in mind,
the data analysis method chosen was analysis of variance (ANOVA), as it
would prove valuable to be used for other tests. The group also made use
of t-tests.
It is worth mentioning that the income data has been truncated. For the
ethical purpose of anonymity, the top 2\% of earners' income figures
have been hidden. Instead, the income of a top 2\% earner is set to the
average income of the top 2\%. The fact that the data has been topcoded
will result in slightly higher discrepancies for males, as only 1 in 20
women that belong in an ``elite household'' have incomes to qualify for
a top 2\% earner status. \footnote{Yavorsky JE, Keister LA, Qian Y, Nau
M. Women in the One Percent: Gender Dynamics in Top Income Positions.
American Sociological Review. 2019;84(1):54-81.
\url{doi:10.1177/0003122418820702}} Thus, the displayed results will
undermine the true gender discrepancy across each variable, as it
ignores the large outliers in income, which are data points belonging
mostly to men.
In determining which variables the group would explore further, the
group constructed linear regression models. First, we constructed a
linear regression model that modeled income based on gender alone. Then,
we constructed models that modeled income based on gender and an
interaction with our chosen variables. The intent was to have two
regression models, and perform an ANOVA to determined whether the
interaction of the variable was significant. We decided that a p-value
of less than 0.05 would be the cutoff for determining significance. As
we performed ANOVA test to determine significance, we ran into an issue
with the data frame being of different size. The reason this was the
case was because some values of our variables we missing. In order to
account for this, we created subsets of the data where there were no
missing values in our variables. Then we created a linear regression
based on gender alone, and then another one based on gender and the
interaction between the variable. This allowed us to perform the ANOVA
test.
After running all of the ANOVA tests to determine whether the
interaction was significant, we then explored the variables affect on
the income gap. To do so, we either ran a linear regression or performed
a t-test. Also, since we were comparing different groups, we decided
that it would be appropriate to analyze the percent difference of each
category in our variables, so we would be able to compare them. There
were a couple variables we did not explore further because the ANOVA
test showed that they were not significant, and they can be seen in our
findings below.
One variable that is noteworth that we didn't explore was the urban vs
rural variable. After performing the ANOVA test on the two models, it
was revealed that this was not a siginificant interaction. We thought
that this would be because of different opportunities and cultures that
exist in urban vs rural settings.
\hypertarget{findings}{%
\section{Findings}\label{findings}}
Among the 90 or so selected variables of the data set, the group
selected 10 variables. After performing the aforementioned methods on
the data from the methodology section, the results were as follows:
In order to determine whether any of the additional factors either
exacerbated or mitigated the income gap between men and women, linear
regression models were ran to determine the interaction between gender
and the additional variables. Then, these models were compared to the
linear regression models as a function of only gender using an anova
test to determine whether these factors where significant. The resulting
p-values from these ANOVA tests can be seen in the table below
\begin{longtable}[]{@{}lcc@{}}
\toprule
Factor & P-Value & Significant?\tabularnewline
\midrule
\endhead
current.age & 0.000 & Yes\tabularnewline
race & 0.000 & Yes\tabularnewline
citizen.status & 0.022 & Yes\tabularnewline
household.net.worth & 0.000 & Yes\tabularnewline
days.religious.activity & 0.001 & Yes\tabularnewline
biological.mother.birth.age & 0.000 & Yes\tabularnewline
parents.relationship.child & 0.000 & Yes\tabularnewline
urban.rural & 0.781 & No\tabularnewline
bio.mom.edu & 0.000 & Yes\tabularnewline
bio.dad.edu & 0.000 & Yes\tabularnewline
guard.mom.edu & 0.000 & Yes\tabularnewline
guard.dad.edu & 0.000 & Yes\tabularnewline
\bottomrule
\end{longtable}
\hypertarget{interaction-of-age}{%
\section{Interaction of Age}\label{interaction-of-age}}
Exploring the significance of age on the income gap between men and
women reveals some interesting findings. Below is the table showing the
coefficients of linear regression modeling income as a linear function
of gender interacting with age.
\begin{longtable}[]{@{}llccc@{}}
\toprule
& Estimate & Std. Error & t value &
Pr(\textgreater\textbar t\textbar)\tabularnewline
\midrule
\endhead
(Intercept) & 52929.256 & 21438.355 & 2.469 & 0.014\tabularnewline
sexMale & -95028.953 & 30061.056 & -3.161 & 0.002\tabularnewline
current.age & -303.896 & 558.823 & -0.544 & 0.587\tabularnewline
sexMale:current.age & 2893.822 & 783.541 & 3.693 & 0.000\tabularnewline
\bottomrule
\end{longtable}
As can be seen in the table, the model determined that for females,
every year of age corellated with an decrease in income by \$303.90.
However, the p-value for this correlation was approximately 0.5866,
indicating that this correlation was not significant. On the other hand,
the model determined that for males, every year of age corellated with
an increase in income by \$2,589.92. This correlation was significant,
as indicated by the p-value of approximately
\ensuremath{2\times 10^{-4}}. While the interaction of age was not
significant for females, the graph below illustrates that overall, age
was significant in the income gap between men and women.
\includegraphics{Final-Final_files/figure-latex/unnamed-chunk-12-1.pdf}
Also, we wanted to explore how the model was fit to the data, so we ran
diagnostic plots as follows
\includegraphics{Final-Final_files/figure-latex/unnamed-chunk-13-1.pdf}
\includegraphics{Final-Final_files/figure-latex/unnamed-chunk-13-2.pdf}
\includegraphics{Final-Final_files/figure-latex/unnamed-chunk-13-3.pdf}
\includegraphics{Final-Final_files/figure-latex/unnamed-chunk-13-4.pdf}
After generating plots to evaluate our linear model, we can see our
Residuals vs Fitted plot, the points surround the red line in a fairly
constant manner despite having a gap from about 42,500 to just above
50,000 which may suggest a linear model is inappropriate. The Normal Q-Q
plot is potentially problematic because many of the values don't fit the
line at the extreme ends of the data, especially the high end. This may
cause our p-values to be invalid. The scale location is very similar to
the Residuals vs.~Fitted plot which is concerning and may again suggest
our model is not appropriate. The Residuals vs Leverage plot shows there
are a few points in the data that are outliers (high leverage and
residuals) skewing the model, but not too many. Overall, these charts
suggest modeling income over sex interacted with age in a linear way may
have some drawbacks. Further discrepancies in the correlation of age and
gender may be experienced had the data for the top 2\% of earners not
been truncated, mostly in the male regression line. Considering that
most of the incomes of the top 2\% of earners are going to be older,
male respondents, the regression line may be quite skewed when comparing
age and income, resulting in a higher slope for the male interaction
with age.
\hypertarget{interaction-of-race}{%
\section{Interaction of Race}\label{interaction-of-race}}
To explore the interaction of race on the income gap between men and
women, a t-test was performed on the percent differences within each
racial group. The t-test provided insight into the mean percent
difference, as well as provided a 95\% confidence interval and
determination of whether the difference was significant. The finding
from that test can be seen below.
\begin{longtable}[]{@{}lccccl@{}}
\toprule
Race & Income Gap (\%) & Upper Bound (\%) & Lower Bound (\%) & P-Value &
Significant?\tabularnewline
\midrule
\endhead
Black & 17.878 & 27.202 & 8.553 & 0.000 & Yes\tabularnewline
Hispanic & 36.704 & 45.115 & 28.293 & 0.000 & Yes\tabularnewline
Mixed Race & 30.096 & 65.202 & -5.009 & 0.091 & No\tabularnewline
Other & 32.640 & 38.512 & 26.767 & 0.000 & Yes\tabularnewline
\bottomrule
\end{longtable}
From looking at the results above, males earned, on average, between
17.878\% to 36.704\% more than females in their respective racial
groups. Additionally, it was apparent that the income gap was
significant for all of the racial groups, except Mixed Race. While the
results into the income gap are helpful, visualizing the results allowed
insight to be derived into whether belonging to certain racial group
exacerbates or mitigates the income gap.
\includegraphics{Final-Final_files/figure-latex/unnamed-chunk-16-1.pdf}
From looking at the bar graph, it appears that Black individuals had the
lowest income gap, while Hispanic individuals had the highest income
gap. Thus, we observe that being Black is a mitigating factor to the
income gap, while being Hispanic is an exacerbating factor to the income
gap. Once again, there may be discrepancies in the t-test, as the
topcoded 2\% values may affect the data, especially the ``Other Race''
category. This would result in a higher Income Gap Percentage for the
category, meaning that being another race that is not Hispanic, Black,
or Mixed will contribute to differences in income across genders.
\hypertarget{interaction-of-citizen-status}{%
\section{Interaction of Citizen
Status}\label{interaction-of-citizen-status}}
To explore the interaction of citizen status on the income gap between
men and women, a t-test was performed on the percent differences within
each racial group. The t-test provided insight into the mean percent
difference, as well as provided a 95\% confidence interval and
determination of whether the difference was significant. The finding
from that test can be seen below.
\begin{longtable}[]{@{}lccccl@{}}
\toprule
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.31}}\raggedright
Citizenship Status\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.15}}\centering
Income Gap (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
Upper Bound (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
Lower Bound (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
P-Value\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.12}}\raggedright
Significant?\strut
\end{minipage}\tabularnewline
\midrule
\endhead
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.31}}\raggedright
Citizen, Born in the U.S.\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.15}}\centering
32.222\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
37.134\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
27.309\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
0.000\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.12}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.31}}\raggedright
Unknown, Birthplace Undetermined\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.15}}\centering
28.511\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
44.520\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
12.502\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
0.001\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.12}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.31}}\raggedright
Unknown, Not Born in U.S.\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.15}}\centering
35.254\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
63.065\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
7.443\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
0.013\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.12}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\bottomrule
\end{longtable}
From looking at the results above, males earned, on average, between
28.510\% to 35.253\% more than females in their respective citizen
status groups. Additionally, it was apparent that the income gap was
significant for all of the citizen status groups. While the results into
the income gap are helpful, visualizing the results allowed insight to
be derived into whether belonging to certain citizen status group
exacerbates or mitigates the income gap.
\includegraphics{Final-Final_files/figure-latex/unnamed-chunk-19-1.pdf}
From looking at the bar graph, it appears that individuals with an
unknown citizen status, and birthplace undetermined had the lowest
income gap, while individuals with an unknown citizen status, and not
born in the United States had the highest income gap. Thus, we observe
that having unknown citizen status, and birthplace undetermined is a
mitigating factor to the income gap, while having unknown citizen
status, and not being born in the United States is an exacerbating
factor to the income gap. The impact of truncated values of the 2\% may
also impact this t-test confidence interval, though the change would not
be as defined as in the previous interactions, as the question posed in
the survey will result in mostly U.S. citizens. Adding an extra point,
even if it is a big outlier, will not skew the results much.
\hypertarget{interaction-of-household-net-worth}{%
\section{Interaction of Household Net
Worth}\label{interaction-of-household-net-worth}}
To explore the interaction of household net worth on the income gap
between men and women, a t-test was performed on the percent differences
within each racial group. The t-test provided insight into the mean
percent difference, as well as provided a 95\% confidence interval and
determination of whether the difference was significant. The finding
from that test can be seen below.
\begin{longtable}[]{@{}lccccl@{}}
\toprule
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.23}}\raggedright
Household Net Worth\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
Income Gap (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
Upper Bound (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
Lower Bound (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.10}}\centering
P-Value\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Significant?\strut
\end{minipage}\tabularnewline
\midrule
\endhead
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.23}}\raggedright
\$108,000 to \$159,999\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
23.988\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
39.138\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
8.838\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.10}}\centering
0.002\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.23}}\raggedright
\$160,000 to \$289,999\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
41.182\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
55.286\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
27.079\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.10}}\centering
0.000\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.23}}\raggedright
\$18,000 to \$30,999\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
26.152\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
42.115\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
10.189\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.10}}\centering
0.001\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.23}}\raggedright
\$3,000 to \$7,999\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
28.872\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
43.582\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
14.161\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.10}}\centering
0.000\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.23}}\raggedright
\$31,000 to \$48,999\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
34.786\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
48.788\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
20.783\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.10}}\centering
0.000\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.23}}\raggedright
\$49,000 to \$72,999\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
32.929\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
47.916\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
17.942\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.10}}\centering
0.000\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.23}}\raggedright
\$73,000 to \$107,999\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
43.401\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
59.260\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
27.541\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.10}}\centering
0.000\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.23}}\raggedright
\$8,000 to \$17,999\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
33.234\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
47.294\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
19.174\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.10}}\centering
0.000\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.23}}\raggedright
Less Than \$3,000\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
31.565\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
49.299\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
13.831\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.10}}\centering
0.001\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.23}}\raggedright
Over \$290,000\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
17.220\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
33.635\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
0.806\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.10}}\centering
0.040\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\bottomrule
\end{longtable}
From looking at the results above, males earned, on average, between
17.220\% to 43.401\% more than females in their respective household
income groups. Additionally, it was apparent that the income gap was
significant for all of the household income groups. While the results
into the income gap are helpful, visualizing the results allowed insight
to be derived into whether belonging to certain household income group
exacerbates or mitigates the income gap.
\includegraphics{Final-Final_files/figure-latex/unnamed-chunk-22-1.pdf}
From looking at the bar graph, it appears that individuals living in a
household with over \$290,000 in annual income had the lowest income
gap, while living in a household earning between \$73,000 and \$107,999
in annual income had the highest income gap. Thus, we observe that
living in a household with over \$290,000 in annual income is a
mitigating factor to the income gap, while living in a household earning
between \$73,000 and \$107,999 in annual income is an exacerbating
factor to the income gap. Surprisingly, the highest income category has
the least contribution to income gap. The top 2\% of income earners are
defined by incomes between \$309,348 and \$737,697. This means that
averaging the incomes of the 2\% and comparing that number will not
reflect the full discrepancy between genders, resulting in a much lower
result, as shown.
\hypertarget{interaction-of-days-religious-activity}{%
\section{Interaction of Days Religious
Activity}\label{interaction-of-days-religious-activity}}
To explore the interaction of days of religious activity on the income
gap between men and women, a t-test was performed on the percent
differences within each racial group. The t-test provided insight into
the mean percent difference, as well as provided a 95\% confidence
interval and determination of whether the difference was significant.
The finding from that test can be seen below.
\begin{longtable}[]{@{}lccccl@{}}
\toprule
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.25}}\raggedright
Days Religious Activity\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
Income Gap (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
Upper Bound (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
Lower Bound (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
P-Value\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Significant?\strut
\end{minipage}\tabularnewline
\midrule
\endhead
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.25}}\raggedright
Multiple Days\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
28.321\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
38.013\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
18.628\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
0\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.25}}\raggedright
No Days\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
23.199\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
32.559\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
13.839\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
0\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.25}}\raggedright
One Day\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
25.661\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
35.187\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.18}}\centering
16.135\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
0\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.14}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\bottomrule
\end{longtable}
From looking at the results above, males earned, on average, between
23.199\% to 28.321\% more than females in their respective religious
activity groups. Additionally, it was apparent that the income gap was
significant for all of the religious activity groups. While the results
into the income gap are helpful, visualizing the results allowed insight
to be derived into whether belonging to certain religious activity group
exacerbates or mitigates the income gap.
\includegraphics{Final-Final_files/figure-latex/unnamed-chunk-25-1.pdf}
From looking at the bar graph, it appears that individuals attending no
religious activity had the lowest income gap, while individuals
attending multiple days of religious activity had the highest income
gap. Thus, we observe that attending no religious activity is a
mitigating factor to the income gap, while attending multiple days of
religious activity is an exacerbating factor to the income gap. Without
a clear connection of high earners and religion, it is indeterminable
how the truncated 2\% data will impact the results.
\hypertarget{interaction-of-biological-mother-birth-age}{%
\section{Interaction of Biological Mother Birth
Age}\label{interaction-of-biological-mother-birth-age}}
To explore the interaction of age of the biological mother during her
first birth on the income gap between men and women, a t-test was
performed on the percent differences within each racial group. The
t-test provided insight into the mean percent difference, as well as
provided a 95\% confidence interval and determination of whether the
difference was significant. The finding from that test can be seen
below.
\begin{longtable}[]{@{}lccccl@{}}
\toprule
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.28}}\raggedright
Biological Mother Birth Age\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
Income Gap (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
Upper Bound (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
Lower Bound (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
P-Value\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.13}}\raggedright
Significant?\strut
\end{minipage}\tabularnewline
\midrule
\endhead
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.28}}\raggedright
19-21\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
30.982\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
39.081\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
22.884\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
0\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.13}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.28}}\raggedright
22-24\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
31.794\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
40.896\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
22.693\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
0\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.13}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.28}}\raggedright
24-27\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
37.725\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
48.087\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
27.363\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
0\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.13}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.28}}\raggedright
Over 27\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
24.435\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
36.032\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
12.839\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
0\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.13}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.28}}\raggedright
Under 19\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
34.621\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
45.185\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
24.057\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
0\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.13}}\raggedright
Yes\strut
\end{minipage}\tabularnewline
\bottomrule
\end{longtable}
From looking at the results above, males earned, on average, between
24.435\% to 37.725\% more than females in their respective biological
mother's age at first birth groups. Additionally, it was apparent that
the income gap was significant for all of the biological mother's age at
first birth groups. While the results into the income gap are helpful,
visualizing the results allowed insight to be derived into whether
belonging to certain biological mother's age at first birth group
exacerbates or mitigates the income gap.
\includegraphics{Final-Final_files/figure-latex/unnamed-chunk-28-1.pdf}
From looking at the bar graph, it appears that individuals with mother's
who were over 27 when they had their first child had the lowest income
gap, while individuals with mother's who were between 24 and 27 when
they had their first child had the highest income gap. Thus, we observe
that having a mother who was over 27 when they had their first child is
a mitigating factor to the income gap, while having a mother who was
between 24 and 27 when they had their first child is an exacerbating
factor to the income gap. As previously stated, most people in the top
percents of income earners will be men. Thus, excluding the true values
and truncating the data will not skew the impact of a mother's birth
age, as this variable deals with women, not men.
\hypertarget{interaction-of-caretaker-relationship-to-child}{%
\section{Interaction of Caretaker Relationship to
Child}\label{interaction-of-caretaker-relationship-to-child}}
To explore the interaction of the caretaker's relationship to the child
on the income gap between men and women, a t-test was performed on the
percent differences within each racial group. The t-test provided
insight into the mean percent difference, as well as provided a 95\%
confidence interval and determination of whether the difference was
significant. The finding from that test can be seen below.
\begin{longtable}[]{@{}lccccl@{}}
\toprule
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.30}}\raggedright
Parent Relationship to Child\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
Income Gap (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
Upper Bound (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
Lower Bound (\%)\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
P-Value\strut
\end{minipage} &
\begin{minipage}[b]{(\columnwidth - 5\tabcolsep) * \real{0.13}}\raggedright
Significant?\strut
\end{minipage}\tabularnewline
\midrule
\endhead
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.30}}\raggedright
Adoptive Parent(s)\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.16}}\centering
-0.738\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
48.171\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.17}}\centering
-49.647\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.09}}\centering
0.976\strut
\end{minipage} &
\begin{minipage}[t]{(\columnwidth - 5\tabcolsep) * \real{0.13}}\raggedright
No\strut