Simulation Study

Estimation

The estimation problem has 100 states and two actions. The reward has three parameters. Three-stage NPL is estimated from 160,000 choices in each of 20 independent panels.

Parameter

True value

Median relative error

90th percentile relative error

Reward feature 1

0.35

0.029

0.063

Reward feature 2

-0.25

0.019

0.064

Reward feature 3

0.20

0.052

0.095

All 20 panels produced an estimate. The mean policy distance was 0.0028. The largest fit took 7.1 seconds. Policy distance is the average total variation between the fitted and true action probabilities across states.

Inference

The inference experiment uses 1,000 independent panels. Each panel has 10,000 choices over 20 states. The empirical standard deviation measures variation across panels. The mean standard error averages the robust uncertainty estimate reported for each panel. These robust standard errors come from the fixed-CCP pseudo-likelihood. They treat the empirical CCPs and supplied transition tensor as fixed. They do not propagate uncertainty from estimating CCPs or transitions.

Parameter

True value

Mean estimate

Empirical SD

Mean SE

Coverage

Reward feature 1

0.35

0.354

0.0305

0.0296

94.2%

Reward feature 2

-0.25

-0.248

0.0506

0.0499

95.4%

Reward feature 3

0.20

0.203

0.0521

0.0543

96.3%

Mean standard errors are 0.97 to 1.04 times the empirical standard deviations. Lower-tail miss rates range from 2.4 to 3.6 percent. Upper-tail miss rates range from 1.2 to 2.2 percent.

All four standard-error methods were applied to one 40-state panel:

Method

Feature 1 SE

Feature 2 SE

Feature 3 SE

Asymptotic

0.0386

0.0522

0.0536

Robust

0.0387

0.0523

0.0533

Clustered

0.0379

0.0532

0.0540

Pairs-cluster bootstrap

0.0375

0.0508

0.0546

The clustered estimates are between 0.99 and 1.05 times their bootstrap counterparts in this panel. The pairs-cluster bootstrap resamples individuals and re-estimates empirical CCPs. It keeps the true transition tensor fixed. This comparison does not test the full Hotz-Miller two-step covariance or the Kasahara-Shimotsu parametric bootstrap.

Counterfactuals

The fitted model is solved again after changing either the first reward parameter or the deterioration process.

Change

Mean policy TV

Mean value loss

Increase the first reward parameter by 1.0

0.0022

0.000184

Slow deterioration

0.0019

0.000083

Policy TV is the state-averaged total-variation distance between the fitted counterfactual policy and the policy from the true parameters. Value loss measures the cost of using the fitted policy instead of the true-parameter policy.

Reproduce the Study

Run the study from the repository root:

PYTHONPATH=src:. uv run python validation/estimators/ccp/ready.py \
  --quiet --output validation/results/ccp_ready.json

Result

wrote validation/results/ccp_ready.json
status: ready

The simulation code and reported results contain the full experiment configuration.