Nothing
# Table 3.4-1
with(SticklebackPlates,
data.frame( genotype = levels(genotype),
frequency = as.vector(table(genotype)),
proportion = as.vector(table(genotype)) / nrow(SticklebackPlates)
)
)
# Proportion is a mean
mean( SticklebackPlates$genotype == 'mm' )
mean( SticklebackPlates$genotype == 'Mm' )
mean( SticklebackPlates$genotype == 'MM' )
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.