write.Layout: Writes the layout information to a tab-delimited file

Description Usage Arguments Author(s) See Also Examples

Description

Writes the layout information to a tab-delimited file.

Usage

1
2
## S3 method for class 'Layout'
write(this, filename, path=NULL, overwrite=FALSE, row.names=FALSE, sep="	", quote=FALSE, ...)

Arguments

filename

The name of the file.

path

Optional path where the data should be written.

row.names

If TRUE row names are written, otherwise not.

sep

Separator character between columns.

...

Other arguments accepted by write.table().

Author(s)

Henrik Bengtsson (http://www.braju.com/R/)

See Also

For read a Layout object from file see *read(). See also write.table(). For more information see Layout.

Examples

1
2
3
4
5
  layout <- Layout(3,2, 2,3)
  tmpfile <- tempfile()
  write(layout, tmpfile)
  file.show(tmpfile)
  unlink(tmpfile)

HenrikBengtsson/aroma documentation built on May 7, 2019, 12:56 a.m.