Learn R Programming

SNPassoc (version 2.0-11)

Table.N.Per: Descriptive sample size and percentage

Description

This function computes sample size and percentage for each category of a categorical trait (e.g. case-control status) for each genotype (or combination of genotypes).

Usage

Table.N.Per(var, dep, subset = !is.na(var))

Value

tp

A matrix giving sample size (n),and the percentage (%) for each level of the categorical trait for each genotype

Arguments

var

categorical 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.

See Also

Table.mean.se

Examples

Run this code
data(SNPs)
#sample size and percentage of cases and controls for each genotype 
Table.N.Per(SNPs$snp10001,SNPs$casco)

# The same table for a subset (males)
Table.N.Per(SNPs$snp10001,SNPs$casco,SNPs$sex=="Male")

# The same table assuming a dominant model
Table.N.Per(dominant(snp(SNPs$snp10001,sep="")),SNPs$casco,SNPs$sex=="Male")


Run the code above in your browser using DataLab