Questions tagged [zeallot]
2 questions
1
vote
1 answer
Demo use of future_promise and zeallot not working
I am experimenting with Shiny and async programming in the hopes of using it in a larger, more complex, public application.
In this example, I thought that unlist() would wait until the value of v1 is returned because of the use of future_promise…

ixodid
- 2,180
- 1
- 19
- 46
1
vote
1 answer
Is it possible to use R's zeallot library with the future library?
This works fine:
library(zeallot)
c(v1, v2, v3) %<-% list(10, 20, 30)
This does not:
library(zeallot)
library(future)
c(v1, v2, v3) %<-% list(10, 20, 30)
because future overrides zeallot's parallel assignment operator.
The following objects are…

ixodid
- 2,180
- 1
- 19
- 46