write.clip: Write data to the clipboard

Description Usage Arguments

View source: R/write.clip.R

Description

A convience wrapper for write.table that writes tab-seperated data to the Windows clipboard. Does not work in *nix.

Usage

1
2
3
4
5
6
7
8
9
write.clip(
  x,
  size = "4096",
  sep = "\t",
  na = "",
  row.names = F,
  excel = F,
  ...
)

Arguments

x

an object to write

size

the file size to use for the clipboard. Defaults to 4096 which is reasonably large.

na

the string to replace NA values. Defaults to "".

row.names

a logical value determining whether row names be written to the file. Defaults to FALSE.

excel

a logical value determing whether Excel should be opened immediately after copying the data to the clipboard.

...

other arguments to pass to write.table()

sepr

a string to seperate columns, passed to write.table as sep=sepr. Defaults to tab-seperated columns.


crazybilly/muadc documentation built on March 6, 2021, 4:15 p.m.