case class StandardResidualHistogram(nBins: Int = 128, range: Double = 8.0, fitGaussian: Boolean = true, fitCauchy: Boolean = true) extends Visualization[Double] with Product with Serializable
Histogram of the error divided by the predicted uncertainty
Gaussian and Cauchy fits are preformed via quantiles:
- standard deviation is taken as the 68th percentile standard error
- gamma is taken as the 50th percentile standard error
- nBins
number of bins in the histogram
- range
of the horizontal axis, e.g. x \in [-range/2, range/2]
- fitGaussian
whether to fit and plot a Gaussian distribution
- fitCauchy
whether to fit and plot a Cauchy distribution
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- StandardResidualHistogram
- Serializable
- Product
- Equals
- Visualization
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new StandardResidualHistogram(nBins: Int = 128, range: Double = 8.0, fitGaussian: Boolean = true, fitCauchy: Boolean = true)
- nBins
number of bins in the histogram
- range
of the horizontal axis, e.g. x \in [-range/2, range/2]
- fitGaussian
whether to fit and plot a Gaussian distribution
- fitCauchy
whether to fit and plot a Cauchy distribution
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- val fitCauchy: Boolean
- val fitGaussian: Boolean
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val nBins: Int
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val range: Double
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def visualize(data: Iterable[(PredictionResult[Double], Seq[Double])]): CategoryChart
Produce a visualization, as a Chart, from predicted-vs-actual data
Produce a visualization, as a Chart, from predicted-vs-actual data
- Definition Classes
- StandardResidualHistogram → Visualization
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()