read.pData | R Documentation |
Read p-value data
The read.pData
is function to read p-value data
read.pData(p.file, sep = ",", quote = "\"", header = T)
p.file: |
the file name of the group data to be read. |
sep: |
the field separator character. Values on each line of
the file are separated by this character. If |
quote: |
the set of quoting characters. To disable quoting
altogether, use |
header: |
a logical value indicating whether the file contains
the names of the variables as its first line. If missing, the
value is determined from the file format: |
the group label vector.
## Not run:
data(hb)
summaryDE <- indDE(data=data,group=group,data.type="microarray",
case.label="2", ctrl.label="1")
pData <- summaryDE[,c(3,1)]
write.csv(pData,file="pData.csv")
pData <- read.pData(p.file="pData.csv")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.