case0302: Agent Orange

Description Usage Format Source References Examples

Description

In 1987, researchers measured the TCDD concentration in blood samples from 646 U.S. veterans of the Vietnam War and from 97 U.S. veterans who did not serve in Vietnam. TCDD is a carcinogenic dioxin in the herbicide called Agent Orange, which was used to clear jungle hiding areas by the U.S. military in the Vietnam War between 1962 and 1970.

Usage

1

Format

A data frame with 743 observations on the following 2 variables.

Dioxin

the concentration of TCDD, in parts per trillion

Veteran

factor variable with two levels, "Vietnam" and "Other", to indicate the type of veteran

Source

Ramsey, F.L. and Schafer, D.W. (2013). The Statistical Sleuth: A Course in Methods of Data Analysis (3rd ed), Cengage Learning.

References

Centers for Disease Control Veterans Health Studies: Serum 2,3,7,8-Tetraclorodibenzo-p-dioxin Levels in U.S. Army Vietnam-era Veterans. Journal of the American Medical Association 260: 1249–1254.

Examples

 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
attach(case0302)  
str(case0302)    # Note: Level 1 of Veteran is "Other" (first alphabeticall)

boxplot(Dioxin ~ Veteran)  

t.test(Dioxin ~ Veteran, var.equal=TRUE,
  alternative="less") # 1-sided t-test; alternative: group 1 mean is less  
t.test(Dioxin ~ Veteran, alternative="less", var.equal=TRUE, 
  subset=(Dioxin < 40)) # t-test on subset for which Dioxin < 40  
t.test(Dioxin ~ Veteran, alternative="less", var.equal=TRUE, 
  subset=(Dioxin < 20))    
t.test(Dioxin ~ Veteran, var.equal=TRUE) # 2-sided--to get confidence interval 

## HISTOGRAMS FOR PRESENTATION  
opar <- par(no.readonly=TRUE)  # Store device graphics parameter settings
par(mfrow=c(2,1), mar=c(3,3,1,1)) # 2 by 1 layout of plots; change margins    
myBreaks <- (0:46) - .5    # Make breaks for histogram bins  
hist(Dioxin[Veteran=="Other"], breaks=myBreaks, xlim=range(Dioxin),
  col="green", xlab="", ylab="", main="")     
text(10,25, 
  "Dioxin in 97 'Other' Veterans; Estimated mean =  4.19 ppt (95% CI: 3.72 to 4.65 ppt)",
  pos=4, cex=.75) # CI from 1-sample t-test & subset=(Veteran="Other")    
hist(Dioxin[Veteran=="Vietnam"],breaks=myBreaks,xlim=range(Dioxin),
  col="green", xlab="", ylab="", main="")   
text(10,160,
  "Dioxin in 646 Vietnam Veterans; Estimated mean =  4.26 ppt (95% CI: 4.06 to 4.64 ppt)",
  pos=4, cex=.75)   
text(13,145,"[Estimated Difference in Means: 0.07 ppt (95% CI: -0.63 to 0.48 ppt)]",
  pos=4, cex=.75)  
par(opar) # Restore previous graphics parameter settings
  
detach(case0302)    

Example output

'data.frame':	743 obs. of  2 variables:
 $ Dioxin : int  0 0 0 0 0 1 1 1 1 1 ...
 $ Veteran: Factor w/ 2 levels "Other","Vietnam": 2 2 2 2 2 2 2 2 2 2 ...

	Two Sample t-test

data:  Dioxin by Veteran
t = -0.26302, df = 741, p-value = 0.3963
alternative hypothesis: true difference in means is less than 0
95 percent confidence interval:
     -Inf 0.391951
sample estimates:
  mean in group Other mean in group Vietnam 
             4.185567              4.260062 


	Two Sample t-test

data:  Dioxin by Veteran
t = -0.048902, df = 740, p-value = 0.4805
alternative hypothesis: true difference in means is less than 0
95 percent confidence interval:
    -Inf 0.37031
sample estimates:
  mean in group Other mean in group Vietnam 
             4.185567              4.196899 


	Two Sample t-test

data:  Dioxin by Veteran
t = 0.096911, df = 739, p-value = 0.5386
alternative hypothesis: true difference in means is less than 0
95 percent confidence interval:
      -Inf 0.3773514
sample estimates:
  mean in group Other mean in group Vietnam 
             4.185567              4.164596 


	Two Sample t-test

data:  Dioxin by Veteran
t = -0.26302, df = 741, p-value = 0.7926
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
 -0.6305128  0.4815229
sample estimates:
  mean in group Other mean in group Vietnam 
             4.185567              4.260062 

Sleuth3 documentation built on May 2, 2019, 6:41 a.m.