c2s: Client-to-Server Object Transfer

Description Usage Arguments Details Value Examples

View source: R/c2s.r

Description

This function allows you to pass an object from the local R session (the client) to server.

Usage

1
c2s(object, newname, env = .GlobalEnv)

Arguments

object

A local R object.

newname

The name the object should take when it is stored on the remote server. If left blank, the remote name will be the same as the original (local) object's name.

env

The environment into which the assignment will take place. The default is the remoter "working environment".

Details

Localize R objects.

Value

Returns TRUE invisibly on successful exit.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
## Not run: 
### Prompts are listed to clarify when something is eval'd locally vs remotely
> library(remoter)
> x <- "some data"
> remoter::connect("my.remote.server")
remoter> x
### Error: object 'x' not found
remoter> c2s(x)
remoter> x
###  [1] "some data" 

## End(Not run)

RBigData/remoter documentation built on Nov. 16, 2021, 4:36 a.m.