pyblp.ProblemResults.extract_diagonals¶
-
ProblemResults.
extract_diagonals
(matrices, market_id=None)¶ Extract diagonals from stacked \(J_t \times J_t\) matrices for each market \(t\).
- Parameters
matrices (array-like) – Stacked matrices, such as estimates of \(\varepsilon\), computed by
ProblemResults.compute_elasticities()
; \(\mathscr{D}\), computed byProblemResults.compute_diversion_ratios()
; \(\bar{\mathscr{D}}\), computed byProblemResults.compute_long_run_diversion_ratios()
; or \(s_{ijt}\) computed byProblemResults.compute_probabilities()
.market_id (object, optional) – ID of the market in which to extract diagonals. By default, diagonals are extracted in all markets and stacked.
- Returns
Stacked matrix diagonals. If
market_id
was not specified, diagonals are extracted in each market \(t\) and stacked. If the matrices are estimates of \(\varepsilon\), a diagonal is a market’s own elasticities of demand; if they are estimates of \(\mathscr{D}\) or \(\bar{\mathscr{D}}\), a diagonal is a market’s diversion ratios to the outside good.- Return type
ndarray
Examples