agridat (version 1.23)

pearl.kernels: Counts of yellow/white and sweet/starchy maize kernels by 15 observers

Description

Counts of yellow/white and sweet/starchy kernels on each of 4 maize ears by 15 observers.

Arguments

Format

A data frame with 59 observations on the following 6 variables.

ear

ear, 8-11

obs

observer, 1-15

ys

number of yellow starchy kernels

yt

yellow sweet

ws

white starchy

wt

white sweet

Details

An ear of white sweet corn was crossed with an ear of yellow starchy corn. The F1 kernels of the cross were grown and a sample of four ears was harvested. The F2 kernels of these ears were classified by each of 15 observers into white/yellow and sweet/starchy.

By Mendelian genetics, the kernels should occur in the ratio 9 yellow starch, 3 white starch, 3 yellow sweet, 1 white sweet.

The observers had the following positions:

1Plant pathologist
2Asst plant pathologist
3Prof agronomy
4Asst prof agronomy
5Prof philosophy
6Biologist
7Biologist
8Asst biologist
9Computer
10Farmer
11Prof plant physiology
12Instructor plant physiology
13Asst plant physiology
14Asst plant physiology
15Prof biology

Examples

Run this code
if (FALSE) {

library(agridat)

data(pearl.kernels)
dat <- pearl.kernels

libs(lattice)
xyplot(ys+yt+ws+wt~obs|ear, dat, type='l', as.table=TRUE,
       auto.key=list(columns=4),
       main="pearl.kernels", xlab="observer",ylab="kernels",
       layout=c(4,1), scales=list(x=list(rot=90)))

# Test hypothesis that distribution is 'Mendelian' 9:3:3:1
dat$pval <- apply(dat[, 3:6], 1, function(x)
                  chisq.test(x, p=c(9,3,3,1)/16)$p.val)
dotplot(pval~obs|ear, dat, layout=c(1,4), main="pearl.kernels",
        ylab="P-value for test of 9:3:3:1 distribution")

}

Run the code above in your browser using DataLab