read.cb {Tmisc}R Documentation

Read from the clipboard

Description

Read tabular data from the clipboard.

Usage

read.cb(header = TRUE, ...)

Arguments

header

A logical value indicating whether the file contains the names of the variables as its first line. Overrides the default header=FALSE option in read.table().

...

Further arguments to be passed to read.table

Value

A data.frame

Examples

## Not run: 
# To read CSV data with a header from the clipboard:
read.cb(header=TRUE, sep=',')

## End(Not run)


[Package Tmisc version 1.0.1 Index]