Description Usage Arguments Value Curl options See Also Examples
Make a connection to DVID server
1 2 3 4 5 6 | dv_conn(
server = Sys.getenv("drvid.server"),
node = Sys.getenv("drvid.node"),
conn = NULL,
...
)
|
server |
DVID server (with optional port specification) |
node |
DVID node |
conn |
A pre-existing connection object |
... |
Named options / headers to be set in the curl handle (see section Curl options for details) |
An list of class dv_conn
drvid uses the curl library provided by the
curl package to carry out remote requests. You can set curl options
by passing additional named arguments captured by .... For example
you can set authentication or a proxy. See handle and
curl_options for a full list of possible options.
You can also set default curl options using environment variables with
names of the form drvid.curl.<curloption>. For example the following
entry in you Renviron file will set the curl proxy
option.
drvid.curl.proxy="socks5://localhost:6666"
1 2 3 4 5 6 7 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.