ai.salmonbrain.ruleofthumb.BaseStatTest.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ruleofthumb_3.0.0_2.12 Show documentation
Show all versions of ruleofthumb_3.0.0_2.12 Show documentation
Apache Spark based framework for analysis A/B experiments
The newest version!
package ai.salmonbrain.ruleofthumb
import org.apache.commons.math3.distribution.NormalDistribution
trait BaseStatTest {
val normalDistribution = new NormalDistribution(0, 1)
val EPS = 1e-10
def sampleSizeEstimation: Long = ???
def square(x: Double): Double = {
x * x
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy