Description Usage Arguments Author(s) Examples
Read first n
lines of filein
and write them
to fileout
, where filein
and fileout
are file
names.
1 | readWriteFirst(filein, fileout, n)
|
filein |
input file |
fileout |
output file |
n |
number of lines to write |
Cathy Laurie
1 2 3 4 5 | path <- system.file("extdata", "affy_raw_data", package="GWASdata")
file <- paste(path, list.files(path)[1], sep="/")
outf <- tempfile()
readWriteFirst(file, outf, 20)
file.remove(outf)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.