Trait/Object

probability_monad

Distribution

Related Docs: object Distribution | package probability_monad

Permalink

trait Distribution[A] extends AnyRef

Self Type
Distribution[A]
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Distribution
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def get: A

    Permalink
    Attributes
    protected[probability_monad]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def *(x: A)(implicit n: Numeric[A]): Distribution[A]

    Permalink
  4. def *(d: Distribution[A])(implicit n: Numeric[A]): Distribution[A]

    Permalink
  5. def +(x: A)(implicit n: Numeric[A]): Distribution[A]

    Permalink
  6. def +(d: Distribution[A])(implicit n: Numeric[A]): Distribution[A]

    Permalink
  7. def -(x: A)(implicit n: Numeric[A]): Distribution[A]

    Permalink
  8. def -(d: Distribution[A])(implicit n: Numeric[A]): Distribution[A]

    Permalink
  9. def /(x: A)(implicit toDouble: <:<[A, Double]): Distribution[Double]

    Permalink
  10. def /(d: Distribution[A])(implicit toDouble: <:<[A, Double]): Distribution[Double]

    Permalink
  11. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  13. def bucketedHist(min: Double, max: Double, nbuckets: Int, roundDown: Boolean = false)(implicit ord: Ordering[A], toDouble: <:<[A, Double]): Unit

    Permalink
  14. def bucketedHist(buckets: Int)(implicit ord: Ordering[A], toDouble: <:<[A, Double]): Unit

    Permalink
  15. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  18. def ev(implicit toDouble: <:<[A, Double]): Double

    Permalink
  19. def filter(pred: (A) ⇒ Boolean): Distribution[A]

    Permalink
  20. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def flatMap[B](f: (A) ⇒ Distribution[B]): Distribution[B]

    Permalink
  22. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  23. def given(pred: (A) ⇒ Boolean): Distribution[A]

    Permalink
  24. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  25. def hist(implicit ord: Ordering[A] = null, d: <:<[A, Double] = null): Unit

    Permalink
  26. def histData: Map[A, Double]

    Permalink
  27. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  28. def kurtosis(implicit toDouble: <:<[A, Double]): Double

    Permalink
  29. def map[B](f: (A) ⇒ B): Distribution[B]

    Permalink
  30. def markov(pred: (A) ⇒ Boolean)(f: (A) ⇒ Distribution[A]): Distribution[A]

    Permalink
  31. final def markov(n: Int)(f: (A) ⇒ Distribution[A]): Distribution[A]

    Permalink

    Markov chains

    Markov chains

    Annotations
    @tailrec()
  32. def mean(implicit toDouble: <:<[A, Double]): Double

    Permalink
  33. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  34. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  35. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  36. def posterior[B](experiment: (A) ⇒ Distribution[B])(observed: (B) ⇒ Boolean): Distribution[A]

    Permalink

    Using this distribution as a prior, compute the posterior distribution after running an experiment and observing some outcomes and not others.

  37. def pr(pred: (A) ⇒ Boolean, given: (A) ⇒ Boolean = (a: A) => true, samples: Int = N): Double

    Permalink
  38. def repeat(n: Int): Distribution[List[A]]

    Permalink
  39. def sample(n: Int = N): List[A]

    Permalink
  40. def samplePar(n: Int = N): ParSeq[A]

    Permalink
  41. def skewness(implicit toDouble: <:<[A, Double]): Double

    Permalink
  42. def stdev(implicit toDouble: <:<[A, Double]): Double

    Permalink
  43. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  44. def toString(): String

    Permalink
    Definition Classes
    Distribution → AnyRef → Any
  45. def until(pred: (List[A]) ⇒ Boolean): Distribution[List[A]]

    Permalink
  46. def variance(implicit toDouble: <:<[A, Double]): Double

    Permalink
  47. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. def withFilter(pred: (A) ⇒ Boolean): Distribution[A]

    Permalink
  51. def zip[B](d: Distribution[B]): Distribution[(A, B)]

    Permalink
  52. def zipWith[B, C](d: Distribution[B])(f: (A, B) ⇒ C): Distribution[C]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped