|
22 | 22 | >>> sp.outreg2(result, filename="results.xlsx") |
23 | 23 | """ |
24 | 24 |
|
25 | | -__version__ = "1.14.0" |
| 25 | +__version__ = "1.15.0" |
26 | 26 | __author__ = "Biaoyue Wang" |
27 | 27 | __email__ = "brycew6m@stanford.edu" |
28 | 28 |
|
|
89 | 89 | rd_distribution, DistRDResult, |
90 | 90 | rd_bayes_hte, BayesRDHTEResult, |
91 | 91 | rd_distributional_design, DDDResult, |
| 92 | + # v1.15 polish |
| 93 | + rd_flex, rd_bias_aware_fuzzy, rd_discrete, |
| 94 | + rd_dashboard, rd_compare, rd_robustness_table, |
92 | 95 | ) |
93 | 96 | from .synth import ( |
94 | 97 | synth, SyntheticControl, synthplot, sdid, augsynth, |
|
101 | 104 | synth_power, synth_mde, synth_power_plot, |
102 | 105 | synth_compare, synth_recommend, SynthComparison, |
103 | 106 | synth_report, synth_report_to_file, |
| 107 | + synth_to_latex, synth_to_markdown, synth_to_excel, |
104 | 108 | german_reunification, basque_terrorism, california_tobacco, |
105 | 109 | synthdid_estimate, sc_estimate, did_estimate, |
106 | 110 | synthdid_placebo, synthdid_plot, synthdid_units_plot, synthdid_rmse_plot, |
|
368 | 372 | inequality_index, subgroup_decompose, source_decompose, shapley_inequality, |
369 | 373 | kitagawa_decompose, das_gupta, |
370 | 374 | gap_closing, mediation_decompose, disparity_decompose, |
| 375 | + yu_elwert_decompose, YuElwertResult, |
371 | 376 | decompose, available_methods, |
372 | 377 | cps_wage, chilean_households, mincer_wage_panel, disparity_panel, |
373 | 378 | ) |
|
941 | 946 | "TARNet", |
942 | 947 | "CFRNet", |
943 | 948 | "DragonNet", |
| 949 | + "neural_effects_frame", |
| 950 | + "neural_summary_frame", |
| 951 | + "neural_training_frame", |
| 952 | + "neural_causal_to_markdown", |
| 953 | + "neural_causal_to_html", |
| 954 | + "neural_causal_to_excel", |
| 955 | + "neural_causal_plot", |
944 | 956 | # Causal Discovery |
945 | 957 | "notears", |
946 | 958 | "NOTEARS", |
|
1179 | 1191 | "synth_power", "synth_mde", "synth_power_plot", |
1180 | 1192 | "synth_compare", "synth_recommend", "SynthComparison", |
1181 | 1193 | "synth_report", "synth_report_to_file", |
| 1194 | + "synth_to_latex", "synth_to_markdown", "synth_to_excel", |
1182 | 1195 | "german_reunification", "basque_terrorism", "california_tobacco", |
1183 | 1196 | # Spatial |
1184 | 1197 | "W", |
|
1203 | 1216 | "source_decompose", "subgroup_decompose", |
1204 | 1217 | "disparity_decompose", "disparity_panel", |
1205 | 1218 | "mediation_decompose", |
| 1219 | + "yu_elwert_decompose", "YuElwertResult", |
1206 | 1220 | "inequality_index", "shapley_inequality", |
1207 | 1221 | # Panel / DID extras |
1208 | 1222 | "aggte", "ggdid", "bjs_pretrend_joint", "cs_report", "CSReport", |
|
1335 | 1349 | # RDD frontier — only the new rd_bayes_hte / rd_distributional_design here |
1336 | 1350 | "rd_bayes_hte", "BayesRDHTEResult", |
1337 | 1351 | "rd_distributional_design", "DDDResult", |
| 1352 | + # v1.15 RDD polish (recent literature) |
| 1353 | + "rd_flex", "rd_bias_aware_fuzzy", "rd_discrete", |
| 1354 | + "rd_dashboard", "rd_compare", "rd_robustness_table", |
1338 | 1355 | # Causal × LLM |
1339 | 1356 | "llm_dag_propose", "LLMDAGProposal", |
1340 | 1357 | "llm_unobserved_confounders", "UnobservedConfounderProposal", |
@@ -1520,10 +1537,20 @@ def _register_lazy(modname, *names): |
1520 | 1537 | "policy_weight_prte", "policy_weight_marginal", |
1521 | 1538 | "policy_weight_observed_prte", |
1522 | 1539 | ) |
1523 | | -_register_lazy("neural_causal", |
| 1540 | +_register_lazy("neural_causal.models", |
1524 | 1541 | "tarnet", "cfrnet", "dragonnet", "TARNet", "CFRNet", "DragonNet", |
| 1542 | +) |
| 1543 | +_register_lazy("neural_causal.gnn_causal", |
1525 | 1544 | "gnn_causal", "GNNCausalResult", |
1526 | 1545 | ) |
| 1546 | +_register_lazy("neural_causal.exports", |
| 1547 | + "neural_effects_frame", "neural_summary_frame", "neural_training_frame", |
| 1548 | + "neural_causal_to_markdown", "neural_causal_to_html", |
| 1549 | + "neural_causal_to_excel", |
| 1550 | +) |
| 1551 | +_register_lazy("neural_causal.plots", |
| 1552 | + "neural_causal_plot", |
| 1553 | +) |
1527 | 1554 | _register_lazy("neural_causal.cevae", |
1528 | 1555 | "cevae", "CEVAE", "CEVAEResult", |
1529 | 1556 | ) |
|
0 commit comments