Nothing
wait_until <- function(condition, timeout=3) {
condition <- substitute(condition)
ptm <- proc.time()
while (!eval(condition, parent.frame()) && (proc.time() - ptm < timeout)["elapsed"]) {
Sys.sleep(0.001)
}
expect_true(eval(condition, parent.frame()))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.