Package jline.api.sim
Class QuantileCIResult
java.lang.Object
jline.api.sim.QuantileCIResult
Point estimate and confidence interval for a steady-state quantile.
Returned by Sim_fquest and Sim_firquest. When heuristic is true a stage test failed, the sample was too small for the
asymptotic justification, and the interval is the conservative fallback, which
may be asymmetric about the estimate.
- Since:
- LINE 3.1.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal doubleBatched STS area estimator of the variance parameter.final intFinal batch count, per replication for Sim_firquest.final doubleFull-sample empirical p-quantile of the truncated data.final doubleHalf of the interval width; the asymmetric fallback attains it only on average.final booleanTrue when a stage test failed and the interval is not asymptotically justified.final doubleLower confidence limit.final intFinal batch size.final intObservations used, b*m, or R*b*m for Sim_firquest.final doubleNonoverlapping batched quantile estimator of the variance parameter.final intNumber of replications, 1 for Sim_fquest.final intObservations deleted from the front of each sample path.final doubleUpper confidence limit.final doubleCombined estimator of the variance parameter.Diagnostic messages, empty on a clean run. -
Constructor Summary
ConstructorsConstructorDescriptionQuantileCIResult(double estimate, double lower, double upper, double halfwidth, int b, int m, int n, int R, int truncated, double Ap, double Np, double Vp, boolean heuristic, List<String> warnings) -
Method Summary
-
Field Details
-
estimate
public final double estimateFull-sample empirical p-quantile of the truncated data. -
lower
public final double lowerLower confidence limit. -
upper
public final double upperUpper confidence limit. -
halfwidth
public final double halfwidthHalf of the interval width; the asymmetric fallback attains it only on average. -
b
public final int bFinal batch count, per replication for Sim_firquest. -
m
public final int mFinal batch size. -
n
public final int nObservations used, b*m, or R*b*m for Sim_firquest. -
R
public final int RNumber of replications, 1 for Sim_fquest. -
truncated
public final int truncatedObservations deleted from the front of each sample path. -
Ap
public final double ApBatched STS area estimator of the variance parameter. -
Np
public final double NpNonoverlapping batched quantile estimator of the variance parameter. -
Vp
public final double VpCombined estimator of the variance parameter. -
heuristic
public final boolean heuristicTrue when a stage test failed and the interval is not asymptotically justified. -
warnings
Diagnostic messages, empty on a clean run.
-
-
Constructor Details
-
QuantileCIResult
-