Append a data frame to a "room", optionally starting at a given row

ec_append(x, room, at = "end", append = TRUE, col_names = FALSE,
  browse = FALSE, ..., ec_host = ethercalc_host())

Arguments

x

a data frame

room

name of an existing EtherCalc "room".

at

if not "end" then the row where the data will be inserted and pasted at.

append, col_names

see readr::write_csv() and this function's Note

browse

if TRUE (FALSE is the default) then open up a browser tab/window to the room

...

passed on to write.csv()

ec_host

See ethercalc_host()

Value

the commands used by EtherCalc to process the append operation (invisibly)

Note

Since this is an append operation the header will not be sent. Set col_names and append (both) to TRUE

You will receive an error if x has a total cell count over 500,000.

See also

Other EthercCalc importers/exporters: ec_edit, ec_export, ec_read

Examples

# NOT RUN {
ec_edit(iris, "test")
ec_append(iris, "test")
# }