export.groups {IPCAPS} | R Documentation |
Export the IPCAPS result to a text file
Description
Export clustering result of
ipcaps
to text file called 'groups.txt'.
Usage
export.groups(result.dir)
Arguments
result.dir |
A result directory as the |
Details
After running, this function exports the file called 'groups.txt' to the same result directory. If 'groups.txt' already exists in the result directory, the exported file is changed to 'groups1.txt', 'groups2.txt', 'groups3.txt', ..., accordingly.
Value
A data frame of exported data containing 4 columns; group
,
node
, label
, row.number
, as described below for more
details:
-
group
represents group membership of IPCAPS result. -
node
represents node numbers of IPCAPS result. -
label
represents labels of rows in orginal input data. -
row.number
represents row numbers of orginal input data.
Examples
# Importantly, bed file, bim file, and fam file are required
# Use the example files embedded in the package
BED.file <- system.file("extdata","ipcaps_example.bed",package="IPCAPS")
LABEL.file <- system.file("extdata","ipcaps_example_individuals.txt.gz",package="IPCAPS")
my.cluster <- ipcaps(bed=BED.file,label.file=LABEL.file,lab.col=2,out=tempdir())
#Here, to export the IPCAPS result to a text file
exported.data <- export.groups(my.cluster$output.dir)
print(dim(exported.data))
head(exported.data)
[Package IPCAPS version 1.1.8 Index]