Catatan
Akses ke halaman ini memerlukan otorisasi. Anda dapat mencoba masuk atau mengubah direktori.
Akses ke halaman ini memerlukan otorisasi. Anda dapat mencoba mengubah direktori.
Description
Copy an object from the workspace of the local R session to the workspace of the remote R session.
Usage
putLocalObject(obj, name = NULL)
Arguments
obj
A character vector containing the names of the R Objects in the local R session to load in the remote R session
name
The name of an R list object (created if necessary) in the remote R session that will contain the R objects from the local R session. If name is NULL, then R objects from the local R session will be loaded in the GlobalEnv of the remote R session.
Details
Complete documentation: https://go.microsoft.com/fwlink/?linkid=836352
Value
list of R objects or NULL
See Also
Examples
## Not run:
aa<-rnorm(100)
bb<-rnorm(100)
putLocalObject(c("aa","bb"))
putLocalObject(c("aa","bb"), name="myObjsFromLocal")
## End(Not run)