copy.row(target, target.start.row, source=<<see below>>, source.row.spec=<<see below>>, overwrite=F, ...)
length()
rows.
target
to
which the copy is to be done. To specify the last row of
target
plus one, use
"@END"
,
""
, or a character value not matching any of the row names of
target
; in the latter case,
target.start.row
will be used for the name(s) of
the copied row(s).
length()
rows. The default is
target
.
source
which is/are to be copied. To specify all rows of
source
, use
"@ALL" or "source
, use "@END" or
""
. The default is
"@ALL"
.
TRUE
, the existing row(s) of
target
will be overwritten by
the copied row(s); if
FALSE
, all existing rows of
target
(if any) from
target.start.row
to the last row will be shifted by the number of rows as
determined by
source.row.spec
.
source.row.spec
row(s) of
source
, unless
overridden by
target.start.row
.
target
and
source
must have compatible rows (the same number of columns, and
the same data type in all corresonding columns); otherwise, an error will occur.
# another way to coerce fuel.frame to a data.sheet object fuel.sheet <- copy.row(data.sheet(), "@END", fuel.frame, "@ALL")