We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66fdb14 commit 249e4f9Copy full SHA for 249e4f9
1 file changed
README.md
@@ -10,12 +10,12 @@ This package will allow you to send function calls as jobs on a computing
10
cluster with a minimal interface provided by the `Q` function:
11
12
```r
13
-# install/load the package if you haven't done so yet
+# install the package if you haven't done so yet
14
Sys.setenv(CLUSTERMQ_AUTO_LIBZMQ=1)
15
install.packages('clustermq')
16
-library(clustermq)
17
18
# queue a function call on your scheduler
+library(clustermq)
19
fx = function(x) x * 2
20
Q(fx, x=1:3, n_jobs=1)
21
# list(2,4,6)
0 commit comments