h2o (version 3.20.0.8)

h2o.clearLog: Delete All H2O R Logs

Description

Clear all H2O R command and error response logs from the local disk. Used primarily for debugging purposes.

Usage

h2o.clearLog()

Arguments

See Also

h2o.startLogging, h2o.stopLogging, h2o.openLog

Examples

Run this code
# NOT RUN {
library(h2o)
h2o.init()
h2o.startLogging()
ausPath = system.file("extdata", "australia.csv", package="h2o")
australia.hex = h2o.importFile(path = ausPath)
h2o.stopLogging()
h2o.clearLog()
# }

Run the code above in your browser using DataCamp Workspace