forked from h2oai/h2o-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:0xdata/h2o
Conflicts: src/main/java/water/util/ChunkSummary.java
- Loading branch information
Showing
30 changed files
with
108 additions
and
317 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
\name{AAA_DownloadAndStartBeforeExamples} | ||
\title{ | ||
Download H2O jar file and Start H2O cloud before examples run (for H2O developers only) | ||
} | ||
\description{ | ||
\code{AAA_DownloadAndStartBeforeExamples}, download H2O jar file and start H2O cloud before examples run. This is only relevant for H2O developers during the building of the CRAN package. | ||
} | ||
|
||
\examples{ | ||
library(h2o) | ||
localH2O = h2o.init(ip = "localhost", port = 54321, startH2O = TRUE) | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
\name{round.H2OParsedData} | ||
\alias{round.H2OParsedData} | ||
\title{Rounds argument.} | ||
\description{Rounds the values in the first argument of a \code{\linkS4class{H2OParsedData}} object to the specified number of decimal places. Default is 0.} | ||
\usage{\method{round}{H2OParsedData}(x, digits=0)} | ||
|
||
\arguments{ | ||
\item{x}{ An \code{\linkS4class{H2OParsedData}} object.} | ||
\item{digits}{ Single number specificing decimal places to round to.} | ||
} | ||
\value{ | ||
Returns a \code{\linkS4class{H2OParsedData}} object with argument rounded as specified. | ||
} | ||
|
||
\examples{ | ||
library(h2o) | ||
localH2O = h2o.init(ip = "localhost", port = 54321, startH2O = TRUE) | ||
irisPath = system.file("extdata", "iris.csv", package="h2o") | ||
iris.hex = h2o.importFile(localH2O, path = irisPath) | ||
iris.data <- iris.hex[,1:3] | ||
iris.rounded <- round.H2OParsedData(iris.data, digits=0) | ||
head(iris.rounded) | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
\name{zzz_ShutdownAfterExamples} | ||
\title{ | ||
Shutdown H2O cloud after examples run (for H2O developers only) | ||
} | ||
\description{ | ||
\code{zzz_ShutdownAfterExamples}, shutdown H2O cloud after examples run. This is only relevant for H2O developers during the building of the CRAN package. | ||
} | ||
|
||
\examples{ | ||
library(h2o) | ||
localH2O = h2o.init(ip = "localhost", port = 54321, startH2O = TRUE) | ||
h2o.shutdown(localH2O, prompt = FALSE) | ||
Sys.sleep(2) | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Binary file not shown.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.