rcode06

Hypothesis testing: R code for Chapter 6 examples

Download the R code on this page as a single file here.

New methods on this page

Click on a function argument for a short description of its meaning. The variable names are plucked from the examples further below.

Take a random sample of a categorical variable having two possible outcomes from a theoretical population of known probabilities:
sample(, , , )

Create a loop to repeatedly sample a known population and generate an approximate null distribution for a test statistic:
for{
     = sample(c("L", "R"), size = 18, prob = c(0.5, 0.5))
        replace = TRUE)
    
    }

Example 6.2. The right hand of toad

Obtain the null distribution for the test statistic (the number of right-handed toads out of 18).

Take a very large number of samples of 18 toads from a theoretical population in which left- and right- handed individuals occur with equal probability (as stipulated by the null hypothesis). For each sample, the number of right-handed toads is calculated and saved in a vector named results18 (the samples themselves are not saved). The results vector is initialized before the loop. The term results18[i] refers to the ith element of results18, where i is a counter. This many iterations might take a few minutes to run on your computer.

results18 <- vector()
for(i in 1:10000){
	tempSample <- sample(c("L", "R"), size = 18, prob = c(0.5, 0.5), replace = TRUE)
	results18[i] <- sum(tempSample == "R")
	}

Save results18 also as a factor with 19 levels, representing each possible integer outcome between 0 and 18. This step is for tables and graphs only -- it makes sure that all 19 categories are included in tables and graphs, even categories with no occurrences.

factor18 <- factor(results18, levels = 0:18)

Tabulate the relative frequency distribution of outcomes in the random sampling process (Table 6.2-1). This is the null distribution. Your results will be similar but not identical to the numbers in Table 6.2-1 because 10,000 times is not large enough for extreme accuracy. The table command calculates the frequencies, and dividing by the length of results18 (i.e., the number of elements in the vector, equal to the number of iterations in the loop) yields the proportions (relative frequencies).

nullTable <- table(factor18, dnn = "nRightToads")/length(factor18)
data.frame(nullTable)

Draw a histogram of the null distribution: the number of right-handed toads out of 18. Setting freq = FALSE causes hist to graph density of observations rather than frequency. In this case, height of bars indicates relative frequency if bars are one unit wide (as in the present case).

hist(results18, right = FALSE, freq = FALSE,
	xlab = "Number of right-handed toads")

Commands for a fancier histogram are shown .

Calculate the fraction of samples in the null distribution having 14 or more right-handed toads. This won't be exact because 10,000 times is not large enough for extreme accuracy.

frac14orMore <- sum(results18 >= 14)/length(results18)
frac14orMore

Calculate the approximate P-value. This won't be exact because 10,000 times is not large enough for extreme accuracy.

2 * frac14orMore

Example 6.4. The genetics of mirror-image flowers

Determine the null distribution for the test statistic, the number of left-handed flowers out of 27.

Obtain a very large number of samples of 27 individuals from a theoretical population in which L and R occur in the ratio 1:3, as specified by the null hypothesis. For each sample, the number of "L" is counted and saved in a vector named results27 (the samples themselves are not saved).

results27 <- vector(mode = "numeric")
for(i in 1:10000){
	tempSample <- sample(c("L", "R"), size = 27, prob = c(0.25, 0.75), 
		replace = TRUE)
	results27[i] <- sum(tempSample == "L")
	}

Save the results also as a factor. This is to ensure that all categories between 0 and 27 are included in tables and graphs, even those that did not occur in the sampling process.

results27fac <- factor(results27, levels = 0:27)

Tabulate the relative frequency distribution of outcomes. To get relative frequencies, use table to get frequencies and then divide by the total number of replicates. Your results will be similar but not identical to the numbers in Table 6.2-1 because 10,000 iterations is not large enough for extreme accuracy.

nullTable <- table(results27fac, dnn = "nRightFlowers")/length(results27fac)
data.frame(nullTable)

Draw a histogram of the null distribution for the the number of left-handed flowers out of 27. Setting freq = FALSE causes hist to graph density of observations rather than frequency. In this case, height of bars indicates relative frequency if bars are one unit wide (as in the present case).

hist(results27, right = FALSE, freq = FALSE,
	xlab = "Number of left-handed flowers")

Commands for a fancier histogram are included .

Calculate the fraction of results in the null distribution having 6 or fewer left-handed flowers.

frac6orLess <- sum(results27 <= 6)/length(results27)
frac6orLess

Calculate the P-value. This won't be exact because 10,000 times is not large enough for extreme accuracy

2 * frac6orLess
The two possible outcomes, here L for left-handed and R for right-handed.
The number of individuals to sample.
The probability of each outcome, L and R, when a single individual is randomly sampled.
Sampling is "with replacement". Ensures that once an individual is sampled, the probability that the next individual is L or R is unchanged.
1000 is the total number of repetitions of the loop. i is a counter, which will count from 1 to 1000 by 1 during the execution of the loop. When the counter reaches 1000, the commands are executed one last time and then the loop halts.
The name of a vector where each new random sample will be stored. This vector is not saved in this loop, but is reused on each iteration
This step counts the number of "R" individuals in each sample of 18. Ordinarily, you would want to save these counts in a results vector, as we show in the main page below.

# We can make a histogram using "barplot" with the height of the bars
# as proportions, as given in "nullTable"
barplot(height = nullTable, space = 0, las = 1, cex.names = 0.8, col = "white",
	xlab = "Number of right-handed toads", ylab = "Relative frequency")


barplot(height = nullTable, space = 0, las = 1, cex.names = 0.8, col = "white",
	xlab = "Number of left-handed flowers", ylab = "Relative frequency")