PMFModeler

Constructors

Link copied to clipboard
constructor(data: IntArray)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
open override val data: IntArray

Returns a copy of the integer data used to construct this modeler. A copy is returned so that the modeler's internal state cannot be modified by the caller.

Link copied to clipboard

This set holds the default set of estimators to try during the estimation process of the discrete distributions.

Link copied to clipboard
open override val frequency: IntegerFrequency
Link copied to clipboard
open override val hasNegatives: Boolean
Link copied to clipboard
open override val hasZeroes: Boolean
Link copied to clipboard
open override val statistics: StatisticIfc

Functions

Link copied to clipboard

Estimates the parameters for all estimators represented by the set of estimators. Shifting of the data is not performed. It is assumed that the supplied estimators are appropriate for the supplied data.

Link copied to clipboard
fun PMFModeler.toReport(title: String = "Discrete Distribution Fitting — Data Analysis", confidenceLevel: Double = 0.95, block: ReportBuilder.() -> Unit = { discreteDataSummary(this@toReport, confidenceLevel = confidenceLevel) discreteVisualization(this@toReport) }): ReportNode.Document

Builds a ReportNode.Document containing a discrete data exploration report — statistical summary and visualization plots — with no goodness-of-fit analysis. Suitable for EDA before committing to a specific distribution.