Skip to content

Instantly share code, notes, and snippets.

@marcosci
Created June 5, 2018 08:33
Show Gist options
  • Save marcosci/5342b91ec032b919a3279b1c4407c1bd to your computer and use it in GitHub Desktop.
Save marcosci/5342b91ec032b919a3279b1c4407c1bd to your computer and use it in GitHub Desktop.
how to setup a remote connection with future in R
# Specify remote worker
login <- tweak(remote, workers = "SERVER IP", user = 'USERNAME')
# Specify future topology
## login node -> { multiple cores }
plan(list(
login,
multiprocess
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment