mirror of
https://github.com/msberends/AMR.git
synced 2025-08-28 11:52:13 +02:00
clipboard update
This commit is contained in:
@@ -6,11 +6,12 @@
|
||||
\alias{clipboard_export}
|
||||
\title{Import/export from clipboard}
|
||||
\usage{
|
||||
clipboard_import(sep = "\\t", header = TRUE, dec = ".", na = c("", "NA",
|
||||
"NULL"), stringsAsFactors = FALSE, startrow = 1, as_vector = TRUE,
|
||||
guess_col_types = TRUE, date_names = "en", date_format = "\%Y-\%m-\%d",
|
||||
time_format = "\%H:\%M", tz = Sys.timezone(), encoding = "UTF-8",
|
||||
info = TRUE)
|
||||
clipboard_import(sep = "\\t", quote = "", header = TRUE, dec = ".",
|
||||
na = c("", "NA", "NULL"), stringsAsFactors = FALSE, startrow = 1,
|
||||
as_vector = TRUE, guess_col_types = TRUE, date_names = "en",
|
||||
date_format = "\%Y-\%m-\%d", time_format = "\%H:\%M",
|
||||
remove_ASCII_escape_char = FALSE, tz = Sys.timezone(),
|
||||
encoding = "UTF-8", info = TRUE)
|
||||
|
||||
clipboard_export(x, sep = "\\t", dec = ".", na = "", header = TRUE,
|
||||
info = TRUE)
|
||||
@@ -21,6 +22,12 @@ clipboard_export(x, sep = "\\t", dec = ".", na = "", header = TRUE,
|
||||
default for \code{read.table}) the separator is \sQuote{white space},
|
||||
that is one or more spaces, tabs, newlines or carriage returns.}
|
||||
|
||||
\item{quote}{the set of quoting characters. To disable quoting
|
||||
altogether, use \code{quote = ""}. See \code{\link{scan}} for the
|
||||
behaviour on quotes embedded in quotes. Quoting is only considered
|
||||
for columns read as character, which is all of them unless
|
||||
\code{colClasses} is specified.}
|
||||
|
||||
\item{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: \code{header} is set to \code{TRUE}
|
||||
@@ -50,6 +57,8 @@ or an object created by \code{\link[=date_names]{date_names()}}.}
|
||||
|
||||
\item{time_format}{Default date and time formats.}
|
||||
|
||||
\item{remove_ASCII_escape_char}{remove ASCII escape character}
|
||||
|
||||
\item{tz}{Default tz. This is used both for input (if the time zone isn't
|
||||
present in individual strings), and for output (to control the default
|
||||
display). The default is to use "UTC", a time zone that does not use
|
||||
|
Reference in New Issue
Block a user