mppData_add_pheno {mppR}R Documentation

Add new phenotypic values to a mppData object

Description

Add the new phenotypic values contained in 'pheno' to a mppData object.

Usage

mppData_add_pheno(mppData, pheno)

Arguments

mppData

An object of class mppData.

pheno

data.frame with : 1) character genotypes identifiers; 2) numeric trait values. The genotypes identifiers must be identical to mppData$geno.id.

Value

Return:

mppData

New mppData object with new phenotypic values added.

Author(s)

Vincent Garin

See Also

mppData_mdf_pheno, subset.mppData,

Examples


data(mppData)
pheno_new <- data.frame(geno.id = mppData$geno.id, ph1 = rnorm(498))

mppData <- mppData_add_pheno(mppData = mppData, pheno = pheno_new)


[Package mppR version 1.5.0 Index]