del.phdata: delete phenotypes from phdata

Description Usage Arguments Author(s) Examples

View source: R/del.phdata.R

Description

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

Usage

1
  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

Author(s)

Yurii Aulchenko

Examples

1
2
3
4
5
6
7
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,]

GenABEL documentation built on May 30, 2017, 3:36 a.m.

Related to del.phdata in GenABEL...