object T_Test1

The T_Test1 companion object provides a convenient method for performing t-test. If 'difference' is false (fail to reject), making a decision on this basis can be risky, so 'same' should be called. If neither 'different' or 'same' are true, need to collect more data.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. T_Test1
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def c(df: Int, α: Double = 0.05): Double

    Return the critical value for the Student's t-distribution.

    Return the critical value for the Student's t-distribution. For a two-sided/two-tailed test, the critical values are '-c' and 'c' and the total probability mass in the tails being 'α'a.

    df

    the effective degrees of freedom

    α

    the desired sigificance level

  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. def different(p: Double, α: Double = 0.05): Boolean

    Determine whether the difference in the two means is statistically significant.

    Determine whether the difference in the two means is statistically significant. If true, "reject" the null hypothesis that μ = μ0, else "fail to reject"

    p

    the probability of a Type I error

    α

    the desired sigificance level

  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def same(p2: Double, pw: Double = 0.9): Boolean

    Determine whether the difference in the two means is statistically insignificant.

    Determine whether the difference in the two means is statistically insignificant. Note, typically this is a weaker test than 'different'.

    p2

    the probability of a Type II error

    pw

    the desired power level (p2 = 1 - power)

  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def test(x: VectorD, μ0: Double, α: Double = 0.05, pw: Double = 0.9): Unit

    Perform a one-sample t-test based on comapring the sample mean with the "known" population mean.

    Perform a one-sample t-test based on comapring the sample mean with the "known" population mean.

    x

    the sample's vector of data

    μ0

    the "known" population mean

    α

    the desired sigificance level

    pw

    the desired power of the test

  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped