Created
August 11, 2019 03:58
-
-
Save wlinInspire/6a57f34de6a082a9ba1c09c2ad405585 to your computer and use it in GitHub Desktop.
10 R Tricks to Boost Your Productivity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h2o_start <- function() { | |
h2o::h2o.init(nthreads = -1, enable_assertions = FALSE, min_mem_size = '8g', | |
strict_version_check = FALSE, port = 54321) | |
} | |
h2o_stop <- function() { | |
h2o::h2o.shutdown(prompt = FALSE) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment