Learn R Programming

HardyWeinberg (version 1.7.8)

toTriangular: Convert a vector of genotype counts to triangular format

Description

Function toTriangular converts a named vector of genotype counts into a triangular matrix format, with homozygotes on the diagonal and heterozygotes below the diagonal.

Usage

toTriangular(x)

Value

a matrix

Arguments

x

A vector of genotype counts

Author

Jan Graffelman jan.graffelman@upc.edu

Examples

Run this code
x <- c(AA=20,AB=52,AC=34,BB=17,BC=51,CC=26)
print(x)
X <- toTriangular(x)
print(X)

Run the code above in your browser using DataLab