Packages

class H2OFrame extends Serializable with RestEncodingUtils

H2OFrame representation via Rest API

Linear Supertypes
RestEncodingUtils, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. H2OFrame
  2. RestEncodingUtils
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def add(another: H2OFrame): H2OFrame
  2. val columnNames: Array[String]
  3. val columns: Array[H2OColumn]
  4. def convertColumnsToCategorical(columnIndices: Array[Int]): H2OFrame
  5. def convertColumnsToCategorical(columns: Array[String]): H2OFrame
  6. def convertColumnsToStrings(columnIndices: Array[Int]): H2OFrame
  7. def convertColumnsToStrings(columns: Array[String]): H2OFrame
  8. def delete(): Unit

    Delete this H2O Frame from the cluster

  9. val frameId: String
  10. def innerJoin(another: H2OFrame): H2OFrame

    Inner join this frame with another frame

    Inner join this frame with another frame

    another

    right frame

    returns

    new frame

  11. def leftJoin(another: H2OFrame): H2OFrame

    Left join this frame with another frame

    Left join this frame with another frame

    another

    right frame

    returns

    new frame

  12. def numberOfColumns: Int
  13. lazy val numberOfRows: Long
  14. def outerJoin(another: H2OFrame): H2OFrame

    Outer join this frame with another frame

    Outer join this frame with another frame

    another

    right frame

    returns

    new frame

  15. def renameCol(originalColName: String, newColName: String): H2OFrame
  16. def rightJoin(another: H2OFrame): H2OFrame

    Right join this frame with another frame

    Right join this frame with another frame

    another

    right frame

    returns

    new frame

  17. def split(splitRatios: Double*): Array[H2OFrame]
  18. def subframe(columns: Array[String]): H2OFrame