Skip to contents

Sends new rows to be appended to the existing Perspective table.

Usage

psp_update(proxy, data, use_arrow = FALSE)

Arguments

proxy

A perspectiveProxy object.

data

A data.frame of new rows to append.

use_arrow

Logical; use Arrow IPC serialization. Default FALSE.

Value

The proxy object (invisibly), for chaining.

Examples

if (interactive()) {
proxy <- perspectiveProxy(session, "viewer")
psp_update(proxy, new_data)
}