
com.databricks.labs.automl.utils.structures.FeatureEngineeringStructures.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automatedml_2.11 Show documentation
Show all versions of automatedml_2.11 Show documentation
Databricks Labs AutoML toolkit
The newest version!
package com.databricks.labs.automl.utils.structures
import org.apache.spark.sql.types.DataType
case class FieldTypes(numericFields: List[String],
categoricalFields: List[String],
dateFields: List[String],
timeFields: List[String],
booleanFields: List[String])
case class FieldDefinitions(dataType: DataType, fieldName: String)
case class FieldPairs(left: String, right: String)
case class FieldCorrelationPayload(primaryColumn: String,
pairs: FieldPairs,
correlation: Double)
case class FieldCorrelationAggregationStats(rowCounts: Double,
averageMap: Map[String, Double])
case class FieldRemovalPayload(dropFields: Array[String],
retainFields: Array[String])
© 2015 - 2025 Weber Informatics LLC | Privacy Policy