Learn R Programming

GenABEL (version 1.8-0)

del.phdata: delete phenotypes from phdata

Description

This function is used to delete certain phenotypes from phenotypic part (phdata) of an object of gwaa.data-class

Usage

del.phdata(data, what, all = FALSE)

Arguments

data
an object of gwaa.data-class
what
which phenotypes (variables) to delete, expressed as (vector of) names (character) or integer (column of phdata data frame)
all
if 'all'=TRUE and 'what' is misisng, all phenotypes are deleted, and only the 'id' and 'sex' are kept

Examples

Run this code
require(GenABEL.data)
data(srdta)
phdata(srdta)[1:5,]
srdta <- del.phdata(srdta,"qt1")
phdata(srdta)[1:5,]
srdta <- del.phdata(srdta,all=TRUE)
phdata(srdta)[1:5,]

Run the code above in your browser using DataLab