analogsea (version 0.5.0)

droplet: Retrieve a single droplet.

Description

Retrieve a single droplet.

Usage

droplet(id, ...)

as.droplet(x)

# S3 method for droplet summary(object, ...)

Arguments

id

(integer) Droplet id.

...

Additional arguments passed down to low-level API function (do_*)

x

Object to coerce. Can be an integer (droplet id), string (droplet name), a droplet (duh), or an action (which waits until complete then returns the droplet)

object

Droplet object to pass to summary

Examples

Run this code
# NOT RUN {
droplet(1234)

as.droplet("my-favourite-droplet")
as.droplet(10)
as.droplet(droplets()[[1]])

droplet(1234) %>% summary
# }

Run the code above in your browser using DataCamp Workspace