moderndid.APRCIResult#

class moderndid.APRCIResult(ci_lower: float, ci_upper: float, ci_length: float, theta_grid: ndarray, accept_grid: ndarray, status: str)[source]#

Bases: NamedTuple

Container for APR confidence interval results.

Attributes:
ci_lowerfloat

Lower bound of confidence interval.

ci_upperfloat

Upper bound of confidence interval.

ci_lengthfloat

Length of confidence interval.

theta_gridnumpy.ndarray

Grid of theta values tested.

accept_gridnumpy.ndarray

Boolean array indicating which theta values are in the identified set.

statusstr

Optimization status.

Methods

count(value, /)

Return number of occurrences of value.

index(value[, start, stop])

Return first index of value.

Attributes

accept_grid

Boolean array indicating which theta values are in the identified set.

ci_length

Length of confidence interval.

ci_lower

Lower bound of confidence interval.

ci_upper

Upper bound of confidence interval.

status

Optimization status.

theta_grid

Grid of theta values tested.