Table.mean.se | R Documentation |
This function computes sample size, mean and standard error of a quantitative trait for each genotype (or combination of genotypes)
Table.mean.se(var, dep, subset = !is.na(var))
var |
quantitative trait |
dep |
variable with genotypes or any combination of them |
subset |
an optional vector specifying a subset of observations to be used in the descriptive analysis |
tp |
A matrix giving sample size (n), median (me) and standard error (se) for each genotype |
Table.N.Per
data(SNPs)
# sample size, mean age and standard error for each genotype
Table.mean.se(SNPs$snp10001,SNPs$protein)
# The same table for a subset (males)
Table.mean.se(SNPs$snp10001,SNPs$protein,SNPs$sex=="Male")
# The same table assuming a dominant model
Table.mean.se(dominant(snp(SNPs$snp10001,sep="")),SNPs$protein,SNPs$sex=="Male")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.