Latent-class conditional logit
The latent-class estimator fits a finite mixture of conditional logits by expectation-maximization. Class membership may be represented by aggregate shares or modeled as a function of panel characteristics with fractional multinomial logit.
Most users should start with LCLSpec and lcl.fit. The lower-level
class remains available for direct use.
import lcl
from lcl import FitOptions, Options
options = Options(fit=FitOptions(starts=3))
results = lcl.fit(data, spec, options=options)
# Lower-level orchestration when a persistent model object is useful:
model = lcl.LatentClassConditionalLogit(spec=spec)
results = model.fit(data, options=options)
Pass spec by keyword to the lower-level constructor. Explicit num_classes
and numeraire_min_abs override their base-specification values; omitted values
inherit them. The historical direct-constructor default without a spec is five
classes, while LCLSpec defaults to two. Create a new model for each fit.
Model
lcl.LatentClassConditionalLogit(num_classes=None, numeraire=None, *, spec=None, numeraire_min_abs=None)
Bases: ChoiceModel
Specification and estimation for latent-class conditional logit models.
This class provides the interface for defining and fitting a latent-class
conditional logit model using an Expectation-Maximization (EM) algorithm. It
inherits from the abstract base class ChoiceModel and manages the data
ingestion, initialization, and iterative optimization of latent taste
parameters and class membership probabilities.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
num_classes
|
int | None
|
Number of latent classes. Omission uses |
None
|
numeraire
|
str | None
|
The name of the variable to be used as the numeraire (e.g., price or cost).
If specified, its taste parameter is mathematically constrained to be
at most |
None
|
spec
|
LCLSpec | None
|
Base specification. Explicit constructor values override its class count and numeraire floor. A conflicting numeraire name raises an error. |
None
|
numeraire_min_abs
|
float | None
|
Positive coefficient floor. Omission uses the specification's floor,
otherwise |
None
|
Attributes:
| Name | Type | Description |
|---|---|---|
num_classes |
int
|
The number of discrete latent classes. |
numeraire |
str | None
|
The name of the numeraire variable. |
numeraire_idx |
int | None
|
The column index of the numeraire variable in the expanded design matrix,
resolved during the |
num_vars |
int
|
The total number of alternative-specific variables (taste parameters),
resolved during the |
num_dem_vars |
int
|
The total number of demographic variables, resolved during the |
Create an unfitted latent-class conditional-logit model specification.
Source code in src/lcl/latent_class_conditional_logit.py
fit(data, alts_col=None, cases_col=None, panels_col=None, utility_formula=None, membership_formula=None, choice_col=None, case_varnames=None, dem_varnames=None, variable_labels=None, dems_data=None, options=None, fit_options=None, optimization_options=None, inference=None, diagnostics=None, progress_callback=None)
Fit the latent-class conditional logit model using an EM algorithm.
This method ingests raw data, translates it into strictly contiguous, zero-indexed JAX arrays (PyTrees), and executes the hardware-accelerated EM optimization routine.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Any
|
The main dataset containing choice situations. Accepts a Polars DataFrame, Pandas DataFrame, or dictionary of arrays. |
required |
alts_col
|
str | None
|
The name of the column identifying specific alternatives within a choice situation. |
None
|
cases_col
|
str | None
|
The name of the column grouping observations into distinct choice situations. |
None
|
panels_col
|
str | None
|
The name of the column mapping choice situations to specific decision-makers (panels). |
None
|
utility_formula
|
str | None
|
Formulaic string for the alternative-specific utility specification.
Examples include |
None
|
membership_formula
|
str | None
|
Right-hand-side Formulaic string for class-membership demographics,
for example |
None
|
choice_col
|
str | None
|
The name of the boolean or binary column indicating chosen alternatives.
Required when |
None
|
case_varnames
|
Sequence[str] | None
|
A list of alternative-specific variables to include in the utility
specification. Required if |
None
|
dem_varnames
|
Sequence[str] | None
|
A list of demographic variables used to predict latent class membership. |
None
|
variable_labels
|
Mapping[str, str] | None
|
Optional mapping from raw DataFrame/model variable names to human-readable labels used in presentation tables. Labels do not change model specification, constraints, prediction inputs, or WTP request names. |
None
|
dems_data
|
Any | None
|
An optional, separate panel-level dataset containing demographics. If
provided, it will be merged with the main |
None
|
options
|
Options | None
|
Complete fit configuration. Do not combine with individual option arguments. |
None
|
fit_options
|
FitOptions | None
|
Preferred EM settings, including multi-start orchestration. |
None
|
optimization_options
|
OptimizationOptions | None
|
Preferred exact-Newton M-step settings. |
None
|
inference
|
InferenceOptions | None
|
Preferred covariance and standard-error settings. |
None
|
diagnostics
|
DiagnosticsOptions | None
|
Diagnostic thresholds and switches. |
None
|
progress_callback
|
callable | None
|
Receives structured hardware, start, EM-step, and completion events. |
None
|
Notes
Case or panel weights are not supported for latent-class estimation and
this method takes no weights argument; passing one is a
:class:TypeError rather than a silent no-op. Weighted estimation is
available for :class:~lcl.conditional_logit.ConditionalLogit.
Returns:
| Type | Description |
|---|---|
class:`~lcl._results.LCLResults`
|
A container holding the estimated parameters, optimization metadata, information criteria, and methods for inference (standard errors, predictions). |
Raises:
| Type | Description |
|---|---|
ValueError
|
If a |
Source code in src/lcl/latent_class_conditional_logit.py
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 | |
Results
lcl.results.LCLResults(model_spec, em_vars, estimation_data, em_recursion, converged, inference, estim_time_sec, diagnostics_config=None, em_history=None, optimization_history=None, observed_score_max=float('nan'), score_tol=0.0001, em_criterion_met=False, polish_report=None, cluster_ids=None, num_clusters=None, param_packing=None)
Post-estimation results and inference container.
Computes robust sandwich covariance matrices (clustered at the decision-maker level) and handles the extraction of population-level moments via the Delta Method.
Attributes:
| Name | Type | Description |
|---|---|---|
cov_matrix |
Float64[Array, 'all_params all_params']
|
Covariance of the reported (structural) parameters, aligned row for row
with :meth: |
inference_status |
str
|
Scope of |
boundary_parameter_indices |
tuple[int, ...]
|
Numerically binding coefficient indices, aligned with
:meth: |
boundary_kkt_violation |
float
|
Largest feasible structural ascent per panel at a binding upper bound.
A value above |
boundary_summary_diagnostics |
dict
|
Summary inference method and, after projected :meth: |
caic |
float
|
Consistent Akaike Information Criterion (Bozdogan, 1987). |
bic |
float
|
Bayesian Information Criterion (Schwarz, 1978). |
adjusted_bic |
float
|
Sample-size adjusted BIC (Sclove, 1987). |
Build a latent-class results object and compute inference artifacts.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_spec
|
Any
|
Fitted model specification. Kept broad to avoid a runtime circular import
with :class: |
required |
em_vars
|
:class:`~lcl._struct.EMVars`
|
Final EM state containing parameters, probabilities, and log likelihood. |
required |
estimation_data
|
:class:`~lcl._struct.Data`
|
Encoded estimation data. |
required |
em_recursion
|
int
|
Number of EM recursions completed before termination. |
required |
converged
|
bool
|
Whether the final observed-data score met |
required |
inference
|
:class:`~lcl.options.InferenceOptions` | None
|
Covariance and standard-error configuration. |
required |
estim_time_sec
|
float
|
Wall-clock estimation time in seconds. |
required |
diagnostics_config
|
:class:`~lcl.options.DiagnosticsOptions` | None
|
Thresholds and switches for public diagnostics. |
None
|
em_history
|
list[dict[str, Any]] | None
|
EM log-likelihood and class-share history. |
None
|
optimization_history
|
list[dict[str, Any]] | None
|
Final class-level M-step diagnostics. |
None
|
observed_score_max
|
float
|
Largest absolute component of the observed-data score per panel at the reported estimate. Recomputed when covariance estimation runs. |
float('nan')
|
score_tol
|
float
|
Stationarity tolerance used for the |
1e-4
|
em_criterion_met
|
bool
|
Whether the Aitken EM stopping criterion was satisfied before the iteration cap. |
False
|
polish_report
|
:class:`~lcl._polish.PolishReport` | None
|
Outcome of the observed-data Newton polish. |
None
|
cluster_ids
|
ArrayLike | None
|
Zero-indexed cluster identifier per panel, for clustering coarser than the decision-maker. |
None
|
num_clusters
|
int | None
|
Number of distinct clusters implied by |
None
|
param_packing
|
:class:`~lcl._params.ParamPacking` | None
|
Reuse of the packing built during estimation. |
None
|
Source code in src/lcl/_results.py
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | |
abic
property
Deprecated alias for :attr:adjusted_bic.
convergence
property
Deprecated alias for :attr:converged.
covariance
property
Deprecated alias for :attr:cov_matrix.
covariance_available
property
Report a finite covariance; inspect inference_status for conditional scope.
__repr__()
Return a compact, human-readable summary of fit quality.
Source code in src/lcl/_results.py
audit_report()
Return a text audit report for replication materials.
Source code in src/lcl/_results.py
beta_summary()
Return population coefficient moments and explicitly labelled uncertainty.
With boundary="projected", nearby price constraints use Gaussian critical-cone simulation; otherwise the ordinary/conditional delta method applies. These SEs do not imply normal confidence intervals. See docs/boundary_inference.md.
Returns:
| Type | Description |
|---|---|
DataFrame
|
Raw variables, display labels, mean coefficients, standard deviations
across classes, their standard errors, class-specific extrema, and
an |
Source code in src/lcl/_results.py
939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 | |
class_coefficients()
Return class-specific structural coefficients.
Returns:
| Type | Description |
|---|---|
DataFrame
|
Long-format table with one row per variable and latent class. The
|
Source code in src/lcl/_results.py
class_shares()
Return aggregate latent-class shares.
Returns:
| Type | Description |
|---|---|
DataFrame
|
One row per latent class with aggregate class share and effective panel mass. |
Source code in src/lcl/_results.py
classification_diagnostics()
Summarize posterior separation and modal classification by class.
Source code in src/lcl/_results.py
convergence_report()
Return a compact convergence and diagnostic report.
Source code in src/lcl/_results.py
diagnose()
diagnostics()
Return structured model diagnostics.
Source code in src/lcl/_results.py
1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 | |
loglik(data, dems_data=None, *, per_panel=False)
Score observed choices with the fitted empirical specification.
The fitted encoder is reused, so Formulaic categorical levels and expanded columns retain their training-time meaning.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
object
|
Long-format data containing one observed choice per case. |
required |
dems_data
|
object | None
|
Optional panel-level demographics joined by the fitted panel ID column. |
None
|
per_panel
|
bool
|
Return a panel-level table instead of the total log likelihood. |
False
|
Returns:
| Type | Description |
|---|---|
float or DataFrame
|
Total log likelihood when |
Source code in src/lcl/_results.py
membership_coefficients()
Return nonbaseline class-membership coefficients with standard errors.
Class 0 is the reference category and therefore has no separately estimated membership coefficients.
Source code in src/lcl/_results.py
membership_marginal_effects()
Return average marginal effects of demographics on class membership.
The membership coefficients are log-odds against an arbitrary reference
class, which makes them awkward to read and impossible to compare across
fits that landed on a different reference. The average marginal effect
(1/N) sum_n d P(class = s | z_n) / d z_nm is free of that
normalisation, is denominated in probability points, and sums to zero
across classes for each demographic variable.
Returns:
| Type | Description |
|---|---|
DataFrame
|
One row per (demographic variable, class) with the average marginal effect and its Delta-method standard error. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the model was fitted without a demographic membership regression. |
Notes
For a binary demographic this is the average of a derivative, not a discrete difference in probabilities; the two agree only approximately.
Source code in src/lcl/_results.py
parameter_names()
Return names aligned with rows and columns of cov_matrix.
Source code in src/lcl/_results.py
predict(data=None, *, X=None, alts=None, cases=None, panels=None, dems=None, dem_panel_ids=None, past_choices=None, dems_data=None, past_choices_dems_data=None, panel_weights=None)
Generate out-of-sample latent-class predictions.
Prediction can be requested either with raw tabular data, which is encoded
using the fitted model specification, or with already-constructed arrays.
When historical choices are supplied through past_choices, class
membership probabilities are updated with Bayes' rule before computing
counterfactual choice probabilities, consumer surplus, and willingness to pay.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
X
|
ArrayLike | None
|
|
None
|
alts
|
ArrayLike | None
|
Alternative identifiers aligned to rows of |
None
|
cases
|
ArrayLike | None
|
Choice-situation identifiers aligned to rows of |
None
|
panels
|
ArrayLike | None
|
Decision-maker identifiers aligned to rows of |
None
|
dems
|
ArrayLike | None
|
Panel-level demographics for array-style prediction. When
|
None
|
dem_panel_ids
|
ArrayLike | None
|
Panel IDs aligned with rows of |
None
|
past_choices
|
PastChoicesData or tabular data
|
Historical choices used to condition latent-class membership probabilities.
Pass a :class: |
None
|
data
|
object | None
|
Long-format prediction data. If provided, the fitted encoder parses this data using the original empirical specification. |
None
|
dems_data
|
object | None
|
Optional panel-level demographics to merge into |
None
|
past_choices_dems_data
|
object | None
|
Optional panel-level demographics to merge into tabular |
None
|
panel_weights
|
str, mapping, sequence, or array
|
Panel aggregation weights: a constant-per-panel data column, mapping by panel ID, or vector in sorted unique prediction-panel order. Individual probabilities do not depend on these weights. |
None
|
Returns:
| Type | Description |
|---|---|
class:`~lcl._prediction.LCLPrediction`
|
Prediction results, including choice probabilities, consumer surplus, panel-level WTP values, and the class probabilities used for prediction. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If required prediction identifiers are missing, if fitted latent-class
parameters are unavailable, or if |
Source code in src/lcl/_results.py
1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 | |
spec_summary()
Return a human-readable model specification summary.
Source code in src/lcl/_results.py
summarize(num_decimals=3, *, show=True)
summarize_betas(header=('Variable', "Means (\\beta's)", "Standard deviations (\\sigma's)"), num_decimals=3, *, show=True)
Print and return population-level coefficient moments.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
header
|
tuple[str, str, str]
|
Column labels used in the printed LaTeX and terminal tables. |
("Variable", ...)
|
num_decimals
|
int
|
Number of decimal places used in printed tables. |
3
|
show
|
bool
|
Emit LaTeX and terminal renderings. Set to |
True
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
Tidy coefficient-moment table. The |
Source code in src/lcl/_results.py
summarize_class_betas(num_decimals=3, *, layout='auto', include_shares=True, show=True)
Print and return class-specific utility coefficients.
:meth:summarize_betas reports the population mean and standard
deviation of each coefficient; this method reports the class-specific
coefficients those moments are computed from, in the same two-line
estimate-over-standard-error cell.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
num_decimals
|
int
|
Decimal places used in the printed tables. |
3
|
layout
|
(auto, wide, dense)
|
|
"auto"
|
include_shares
|
bool
|
Append each class's aggregate share to the printed table. |
True
|
show
|
bool
|
Emit LaTeX and terminal renderings. |
True
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
The long-format frame from :meth: |
Source code in src/lcl/_results.py
summarize_membership(num_decimals=3, *, layout='auto', include_shares=True, marginal_effects=True, show=True)
Print and return the class-membership demographic regression.
The reference class is printed as an explicit row (or column) of zeros rather than omitted, and the rendering carries the normalisation note, so a reader can see which class the log-odds are measured against without consulting the documentation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
num_decimals
|
int
|
Decimal places used in the printed tables. |
3
|
layout
|
(auto, wide, dense)
|
|
"auto"
|
include_shares
|
bool
|
Show each class's aggregate share beside its coefficients. |
True
|
marginal_effects
|
bool
|
Also print :meth: |
True
|
show
|
bool
|
Emit LaTeX and terminal renderings. |
True
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
The long-format frame from :meth: |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the fitted model has no demographic class-membership regression. |
Source code in src/lcl/_results.py
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 | |
Held-out scoring
LCLResults.loglik transforms observed choices with the fitted encoder:
The panel-level form returns original panel IDs and their log-likelihood contributions. It is also the scoring path used by cross-validation.
Summary methods return Polars frames. Pass show=False to suppress their LaTeX
and terminal renderings:
summary = results.summarize_betas(show=False)
class_coefficients = results.class_coefficients() # includes std_error
membership = results.membership_coefficients() # class 0 is the reference
classification = results.classification_diagnostics()
parameter_names() labels covariance rows and columns exactly. converged,
cov_matrix, and adjusted_bic are the canonical names shared with conditional
logit; convergence, covariance, and abic are deprecated aliases.
Boundary results and diagnostics
In 0.1.42, class_coefficients() adds boundary and inference_status.
beta_summary() adds inference_status and supports projected uncertainty for
class-weighted coefficient means and SDs when requested at fit time.
| Attribute / column | Contract |
|---|---|
result.inference_status |
Covariance scope: regular, conditional_on_boundary, unavailable, or skipped. |
result.boundary_parameter_indices |
Tuple of numerically binding structural-coefficient indices, aligned with parameter_names(). |
result.boundary_kkt_violation |
Maximum feasible structural ascent per panel at those bounds. A violation above score_tol marks the fit nonconverged. |
result.cov_matrix |
Structural covariance. In conditional/projected modes, binding-price rows and columns are zero by conditioning; individual price SEs are suppressed. |
Summary inference_status |
critical_cone_projection, conditional_on_boundary_fallback, or the covariance status when the ordinary/conditional delta method applies. |
result.boundary_summary_diagnostics |
Initially contains method. After projected summarization, also includes the selected constraints, multiplier tests, tuning threshold, directional-SD variables, draw count/seed, information audit, time, and any fallback reason. |
The dictionary keys for selected constraints are active_parameters,
strict_parameters, and weak_parameters; all use the full parameter ordering.
multiplier_z follows active_parameters; each entry is an estimated KKT
multiplier divided by its nuisance-adjusted, fixed-face score SD.
selection_threshold records the
pointwise active-set tuning rule. directional_sd_variables names coefficient
spreads treated with the norm derivative at zero. simulated_dimension counts
the Gaussian coordinates actually simulated; after successful projection, 0
means the summary SEs have no Monte Carlo error. It does not establish exact
finite-sample inference or rule out a conditional fallback.
fallback_reason is None when the projection succeeds.
Call beta_summary() before reading its projection diagnostics. A finite
cov_matrix alone does not establish full boundary uncertainty: it can be
conditional even when moment SEs use projection. Prediction, WTP, elasticity,
and membership SEs retain that covariance's conditional interpretation. When
prices are interior and far from their bounds, projected mode uses regular
summary inference.
The boundary-price tutorial demonstrates this API. The method guide cites Geyer, Andrews, Kim–Stone–White, Liao–Kroer, Andrews–Soares, and Fang–Santos, and states the assumptions and conditional fallback.
Diagnostics
lcl.results.LCLDiagnostics(frame)
Structured diagnostics for a fitted latent-class model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
frame
|
DataFrame
|
Diagnostic checks with at least |
required |
Store diagnostic checks.
Source code in src/lcl/_diagnostics.py
__repr__()
print()
Print a compact diagnostics table.
Prediction and counterfactuals
Tabular prediction is preferred because it reuses the fitted encoder:
prediction = results.predict(data=counterfactual_data)
shares = prediction.market_shares()
aggregate = prediction.aggregate_elasticities(["cost", "time"])
Pass panel_weights= to predict as a panel-keyed mapping, a prediction-data
column name, or a vector in sorted prediction-panel order. WTP supports
se="delta", se="bootstrap" (an asymptotic parametric bootstrap), and
se="none". Both inference methods propagate uncertainty through the Bayesian
update when past_choices is supplied. History can cover a subset of prediction
consumers; prediction.class_membership() reports the probability source and
history count for each consumer. Prediction demographics supply the prior.
Surplus frames include surplus_units (money with a numeraire, otherwise
utils). Use baseline_prediction.surplus_change(counterfactual_prediction)
for the identified welfare change rather than comparing unnormalised levels.
Changes check model, consumer/occasion identity, and weights, and include
change_identified. Monetary summaries require a linear numeraire without extra
price transforms or interactions. marginal_wtp("quality") evaluates the full
raw-attribute derivative at each offered profile; compute_wtp aggregates it by
consumer and demographic group. See the
economic definitions and worked examples.
For array-style prediction, supply dem_panel_ids with dems so demographic
rows can be validated and reordered. Tabular and array prediction inputs cannot
be combined in one call. Without those IDs, demographic rows must
follow sorted unique panel-ID order.
lcl.results.LCLPrediction(predicted_probs_df, surplus_df, wtp_alt_vars_by_panel_df, predict_data, results, class_probs_by_panel=None, class_probabilities_source='prior', partition_data_df=None, original_alts=None, original_cases=None, original_panels=None, raw_prediction_data=None, panel_weights=None, past_diff_unchosen_chosen=None, past_data=None)
Bases: _PredictionBase
Latent-class prediction with partitioned WTP inference.
Source code in src/lcl/_prediction.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | |
class_membership()
Return prior and prediction probabilities, with history counts by consumer.
One row per panel and class; class IDs follow the zero-based result API. Consumers with zero historical cases retain their demographic prior.
Source code in src/lcl/_prediction.py
compute_wtp(*wtp_requests, partition_data=None, panel_col='panels', num_decimals=4, class_probabilities='stored', se='delta', bootstrap_draws=500, bootstrap_seed=0, show=True)
Compute the Marginal Willingness-to-Pay (WTP) across demographic partitions.
Evaluates raw-attribute utility derivatives divided by each class's own negative cost coefficient for subsets of decision-makers. Interactions and transforms enter the numerator through the utility-formula chain rule. Expanded design-column targets instead hold the other design columns fixed. Outputs formatted LaTeX and terminal summary tables, including analytical standard errors derived via the Delta Method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wtp_requests
|
WTPRequest | Iterable[WTPRequest]
|
One or more configuration objects specifying the target variable, the demographic partitioning variable, and the binning strategy (e.g., quintiles, categorical, custom breaks, or a dummy-coded categorical factor). |
()
|
partition_data
|
object | None
|
Optional panel-level or long-format tabular data containing partitioning variables that were not included in the fitted class-membership specification. Values must be constant within each panel. |
None
|
panel_col
|
str
|
Panel identifier column in |
"panels"
|
num_decimals
|
int
|
Number of decimal places used in printed WTP tables. |
4
|
class_probabilities
|
(stored, prior, posterior)
|
Class-membership probabilities used for WTP/tradeoff point estimates.
|
"stored"
|
se
|
(delta, bootstrap, none)
|
Standard-error method. Delta-method and asymptotic parametric-bootstrap
standard errors are available for prior class probabilities.
When the prediction used |
"delta"
|
bootstrap_draws
|
int
|
Number of asymptotic parameter draws for |
500
|
bootstrap_seed
|
int
|
Reproducible random seed for parametric-bootstrap draws. |
0
|
show
|
bool
|
Emit LaTeX and terminal renderings for each request. |
True
|
Returns:
| Type | Description |
|---|---|
dict[str, DataFrame]
|
Summary tables keyed by their printed titles. Each table preserves
raw variable names in |
Notes
Derivatives are averaged equally across offered alternatives within each
case, then across cases within a panel. Panel weights apply across panels.
This matters when WTP varies across the evaluation profiles. The returned
wtp_alt_vars_by_panel attribute and :meth:wtp_by_class instead contain
expanded-design coefficient ratios. Quintile cutoffs are unweighted
sample quantiles; inference treats cutoffs and demographic designs as fixed.
Raises:
| Type | Description |
|---|---|
ValueError
|
If the parent model was not estimated with a specified numeraire constraint. |
Source code in src/lcl/_prediction.py
863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 | |
denominator_diagnostics()
Return denominator levels, SEs, and marginal Gaussian crossing probabilities.
Probabilities above the configured bound drive the deterministic 0.001 bootstrap screen; probabilities above zero describe denominator sign uncertainty. These are diagnostics, not joint coverage guarantees. Unavailable covariance produces NaN uncertainty diagnostics.
Source code in src/lcl/_prediction.py
tradeoff(*wtp_requests, **kwargs)
Alias for :meth:compute_wtp with more neutral terminology.
Source code in src/lcl/_prediction.py
wtp_by_class(target=None)
Return class-specific WTP/tradeoff ratios.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target
|
str | None
|
Optional target variable to filter. By default, all non-numeraire alternative-specific variables are returned. |
None
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
Class-specific ratios |
Source code in src/lcl/_prediction.py
lcl.options.WTPRequest(alt_var, demographic_var, partition_type, bins=None, dummy_vars=None, dummy_labels=None, base_category='base')
dataclass
Configuration for a partitioned marginal willingness-to-pay summary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
alt_var
|
str
|
Raw utility attribute or expanded design-column target. |
required |
demographic_var
|
str
|
Panel-level grouping column, or a descriptive name for a dummy-coded factor. |
required |
partition_type
|
PartitionType or str
|
|
required |
bins
|
list[float] | None
|
Finite, strictly increasing cutpoints for |
None
|
dummy_vars
|
list[str] | None
|
Mutually exclusive binary columns for a categorical partition. |
None
|
dummy_labels
|
list[str] | None
|
Distinct labels for |
None
|
base_category
|
str
|
Label for panels with all dummy columns zero. It must differ from the other dummy labels. Used only for dummy-coded partitions. |
"base"
|
__post_init__()
Normalize and validate the partition request.
Source code in src/lcl/options.py
lcl.options.PartitionType
lcl.options.PastChoicesData(X, y, alts, cases, panels, dems=None, dem_panel_ids=None)
dataclass
Array-style historical choices used to update class membership.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
X
|
(array - like, shape(rows, alt_vars))
|
Historical utility design in fitted expanded-column order. |
required |
y
|
(array - like, shape(rows))
|
Binary historical choices, exactly one per (panel, case). |
required |
alts
|
(array - like, shape(rows))
|
Original identifiers aligned with |
required |
cases
|
(array - like, shape(rows))
|
Original identifiers aligned with |
required |
panels
|
(array - like, shape(rows))
|
Original identifiers aligned with |
required |
dems
|
(array - like, shape(panels, dem_vars))
|
Historical demographics retained for input compatibility. Membership
priors use prediction demographics. Utility interactions must already be
included in |
None
|
dem_panel_ids
|
(array - like, shape(panels))
|
IDs identifying rows of |
None
|