Package jline.api.sim
Class StsQuantileStats
java.lang.Object
jline.api.sim.StsQuantileStats
Standardized time series statistics of the batched quantile process.
Produced by Sim_sts_quantile_areas and consumed by Sim_fquest and Sim_firquest. The three variance-parameter estimators
all target sigma_p^2 = lim n Var(ytilde_p(n)); see Sim_sts_quantile_areas for their definitions.
- Since:
- LINE 3.1.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal doubleBatched STS area estimator of the variance parameter.final double[]Signed STS areas, one per batch.final intBatch count.final double[]Batched quantile estimators, one per batch.final intBatch size.final intObservations used, b*m.final doubleNonoverlapping batched quantile estimator of the variance parameter, NaN when b < 2.final doubleFull-sample empirical p-quantile over all n observations.final doubleCombined estimator of the variance parameter, NaN when b < 2. -
Constructor Summary
ConstructorsConstructorDescriptionStsQuantileStats(double[] areas, double[] bqe, double quantile, double Ap, double Np, double Vp, int b, int m, int n) -
Method Summary
-
Field Details
-
areas
public final double[] areasSigned STS areas, one per batch. -
bqe
public final double[] bqeBatched quantile estimators, one per batch. -
quantile
public final double quantileFull-sample empirical p-quantile over all n observations. -
Ap
public final double ApBatched STS area estimator of the variance parameter. -
Np
public final double NpNonoverlapping batched quantile estimator of the variance parameter, NaN when b < 2. -
Vp
public final double VpCombined estimator of the variance parameter, NaN when b < 2. -
b
public final int bBatch count. -
m
public final int mBatch size. -
n
public final int nObservations used, b*m.
-
-
Constructor Details
-
StsQuantileStats
public StsQuantileStats(double[] areas, double[] bqe, double quantile, double Ap, double Np, double Vp, int b, int m, int n)
-