read.rawData | R Documentation |
Read raw data: microarray & RNAseq
The read.rawData
is function to read raw data
read.rawData(data.file, sep = ",", quote = "\"", header = T)
data.file: |
the file name of the 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 data matrix.
## Not run:
data(hb)
write.csv(data,file="rawData.csv")
data <- read.rawData(data.file="rawData.csv")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.