greaterOrEqual <- function(x,y) {
precision <- sqrt(.Machine$double.eps)
(x >= y) | (abs(x-y) <= precision)
}
closeSockets <- function() {
allCon <- showConnections()
socketCon <- as.integer(rownames(allCon)[allCon[, "class"] == "sockconn"])
sapply(socketCon, function(ii) close.connection(getConnection(ii)) )
}
foreachCleanup <- function() {
if (exists(".revoDoParCluster", where=doParallel:::.options)) {
if(!is.null(doParallel:::.options$.revoDoParCluster))
stopCluster(doParallel:::.options$.revoDoParCluster)
remove(".revoDoParCluster", envir=doParallel:::.options)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.