You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ax1.set_title("Estimate of Uncertainty in the 5% Failure Time", fontsize=20)
500
+
ax1.axvline(
501
+
hist_data["p05"].quantile(0.025), color="cyan", label="Lower Bound PI for 5% failure time"
502
+
)
503
+
ax1.axvline(
504
+
hist_data["p05"].quantile(0.975), color="cyan", label="Upper Bound PI for 5% failure time"
505
+
)
506
+
ax1.legend()
507
+
ax.legend();
508
+
```
509
+
510
+
Next we'll plot the bootstrapped data and the two estimates of coverage we achieve conditional on the MLE fit. In other words when we want to assess the coverage of a prediction interval based on our MLE fit we can also bootstrap an estimate for this quantity.
0 commit comments