Package

ai.deepsense.deeplang.params

selections

Permalink

package selections

Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class ColumnSelection extends Serializable

    Permalink

    Represents selecting subset of columns of dataframe.

    Represents selecting subset of columns of dataframe.

    Annotations
    @SerialVersionUID()
  2. trait ColumnSelectionJsonProtocol extends DefaultJsonProtocol with SprayJsonSupport

    Permalink
  3. case class IndexColumnSelection(indexes: Set[Int]) extends ColumnSelection with Product with Serializable

    Permalink

    Represents selecting subset of columns which have one of given indexes.

  4. case class IndexRangeColumnSelection(lowerBound: Option[Int], upperBound: Option[Int]) extends ColumnSelection with Product with Serializable

    Permalink
  5. case class IndexSingleColumnSelection(value: Int) extends SingleColumnSelection with Product with Serializable

    Permalink

    Points to column of dataframe with given index.

    Points to column of dataframe with given index.

    value

    index of chosen column

  6. case class MultipleColumnSelection(selections: Vector[ColumnSelection], excluding: Boolean = false) extends Product with Serializable

    Permalink

    Represents selecting subset of columns of dataframe.

    Represents selecting subset of columns of dataframe. It consists of a few column selections, each of which can select columns in different way (by indexes, by names etc.). Subset selected by this class can be considered as sum of subsets selected by 'selections'.

    selections

    list of selections

    excluding

    whether list of selections is excluding

  7. trait MultipleColumnSelectionProtocol extends DefaultJsonProtocol with SprayJsonSupport

    Permalink
  8. case class NameColumnSelection(names: Set[String]) extends ColumnSelection with Product with Serializable

    Permalink

    Represents selecting subset of columns which have one of given names.

  9. case class NameSingleColumnSelection(value: String) extends SingleColumnSelection with Product with Serializable

    Permalink

    Points to column of dataframe with given name.

    Points to column of dataframe with given name.

    value

    name of chosen column

  10. sealed abstract class SingleColumnSelection extends Serializable

    Permalink

    Represents selecting single column of dataframe.

    Represents selecting single column of dataframe.

    Annotations
    @SerialVersionUID()
  11. trait SingleColumnSelectionProtocol extends DefaultJsonProtocol with SprayJsonSupport

    Permalink
  12. case class TypeColumnSelection(types: Set[ColumnType]) extends ColumnSelection with Product with Serializable

    Permalink

    Represents selecting subset of columns which have one of given types.

Value Members

  1. object ColumnSelection extends Serializable

    Permalink
  2. object ColumnSelectionJsonProtocol extends ColumnSelectionJsonProtocol

    Permalink
  3. object IndexColumnSelection extends Serializable

    Permalink
  4. object IndexRangeColumnSelection extends Serializable

    Permalink
  5. object IndexSingleColumnSelection extends Serializable

    Permalink
  6. object MultipleColumnSelection extends Serializable

    Permalink
  7. object MultipleColumnSelectionProtocol extends MultipleColumnSelectionProtocol

    Permalink
  8. object NameColumnSelection extends Serializable

    Permalink
  9. object NameSingleColumnSelection extends Serializable

    Permalink
  10. object SingleColumnSelection extends Serializable

    Permalink
  11. object SingleColumnSelectionProtocol extends SingleColumnSelectionProtocol

    Permalink
  12. object TypeColumnSelection extends Serializable

    Permalink

Ungrouped