forked from awslabs/deequ
-
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.
New analyzer, RatioOfSums (awslabs#552)
* Added RatioOfSums analyzer and tests * Unit test for divide by zero and code cleanup. * More detailed Scaladoc * Fixed docs to include Double.NegativeInfinity * Add copyright to new file
- Loading branch information
1 parent
6538ef3
commit b69f2b8
Showing
4 changed files
with
123 additions
and
0 deletions.
There are no files selected for viewing
92 changes: 92 additions & 0 deletions
92
src/main/scala/com/amazon/deequ/analyzers/RatioOfSums.scala
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,92 @@ | ||
/** | ||
* Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). You may not | ||
* use this file except in compliance with the License. A copy of the License | ||
* is located at | ||
* | ||
* http://aws.amazon.com/apache2.0/ | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
* express or implied. See the License for the specific language governing | ||
* permissions and limitations under the License. | ||
* | ||
*/ | ||
|
||
package com.amazon.deequ.analyzers | ||
|
||
import com.amazon.deequ.analyzers.Preconditions.{hasColumn, isNumeric} | ||
import com.amazon.deequ.metrics.Entity | ||
import org.apache.spark.sql.DeequFunctions.stateful_corr | ||
import org.apache.spark.sql.{Column, Row} | ||
import org.apache.spark.sql.types.DoubleType | ||
import org.apache.spark.sql.functions._ | ||
import org.apache.spark.sql.types.StructType | ||
import Analyzers._ | ||
|
||
import com.amazon.deequ.metrics.Entity | ||
import com.amazon.deequ.repository.AnalysisResultSerde | ||
|
||
case class RatioOfSumsState( | ||
numerator: Double, | ||
denominator: Double | ||
) extends DoubleValuedState[RatioOfSumsState] { | ||
|
||
override def sum(other: RatioOfSumsState): RatioOfSumsState = { | ||
RatioOfSumsState(numerator + other.numerator, denominator + other.denominator) | ||
} | ||
|
||
override def metricValue(): Double = { | ||
numerator / denominator | ||
} | ||
} | ||
|
||
/** Sums up 2 columns and then divides the final values as a Double. The columns | ||
* can contain a mix of positive and negative numbers. Dividing by zero is allowed | ||
* and will result in a value of Double.PositiveInfinity or Double.NegativeInfinity. | ||
* | ||
* @param numerator | ||
* First input column for computation | ||
* @param denominator | ||
* Second input column for computation | ||
*/ | ||
case class RatioOfSums( | ||
numerator: String, | ||
denominator: String, | ||
where: Option[String] = None | ||
) extends StandardScanShareableAnalyzer[RatioOfSumsState]( | ||
"RatioOfSums", | ||
s"$numerator,$denominator", | ||
Entity.Multicolumn | ||
) | ||
with FilterableAnalyzer { | ||
|
||
override def aggregationFunctions(): Seq[Column] = { | ||
val firstSelection = conditionalSelection(numerator, where) | ||
val secondSelection = conditionalSelection(denominator, where) | ||
sum(firstSelection).cast(DoubleType) :: sum(secondSelection).cast(DoubleType) :: Nil | ||
} | ||
|
||
override def fromAggregationResult( | ||
result: Row, | ||
offset: Int | ||
): Option[RatioOfSumsState] = { | ||
if (result.isNullAt(offset)) { | ||
None | ||
} else { | ||
Some( | ||
RatioOfSumsState( | ||
result.getDouble(0), | ||
result.getDouble(1) | ||
) | ||
) | ||
} | ||
} | ||
|
||
override protected def additionalPreconditions(): Seq[StructType => Unit] = { | ||
hasColumn(numerator) :: isNumeric(numerator) :: hasColumn(denominator) :: isNumeric(denominator) :: Nil | ||
} | ||
|
||
override def filterCondition: Option[String] = where | ||
} |
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