|
22 | 22 | >>> sp.outreg2(result, filename="results.xlsx") |
23 | 23 | """ |
24 | 24 |
|
25 | | -__version__ = "0.9.13" |
| 25 | +__version__ = "0.9.14" |
26 | 26 | __author__ = "Biaoyue Wang" |
27 | 27 | __email__ = "brycew6m@stanford.edu" |
28 | 28 |
|
|
96 | 96 | from .output.regression_table import regtable, RegtableResult, mean_comparison, MeanComparisonResult |
97 | 97 | from .output.paper_tables import paper_tables, PaperTables, TEMPLATES as PAPER_TABLE_TEMPLATES |
98 | 98 | from .postestimation import margins, marginsplot, margins_at, margins_at_plot, contrast, pwcompare, test, lincom |
99 | | -from .diagnostics import oster_bounds, mccrary_test, diagnose, het_test, reset_test, vif, sensemakr, rddensity, hausman_test, anderson_rubin_test, effective_f_test, tF_critical_value, evalue, evalue_from_result, diagnose_result, estat, kitagawa_test, KitagawaResult |
| 99 | +from .diagnostics import oster_bounds, mccrary_test, diagnose, het_test, reset_test, vif, sensemakr, rddensity, hausman_test, anderson_rubin_test, effective_f_test, tF_critical_value, evalue, evalue_from_result, diagnose_result, estat, kitagawa_test, KitagawaResult, rosenbaum_bounds, rosenbaum_gamma, RosenbaumResult |
100 | 100 | from .inference import ( |
101 | 101 | wild_cluster_bootstrap, aipw, ri_test, ipw, bootstrap, BootstrapResult, |
102 | 102 | twoway_cluster, conley, pate, PATEEstimator, fisher_exact, FisherResult, |
|
106 | 106 | g_computation, front_door, |
107 | 107 | ) |
108 | 108 | from .msm import msm, MarginalStructuralModel, stabilized_weights |
109 | | -from .proximal import proximal, ProximalCausalInference |
| 109 | +from .proximal import ( |
| 110 | + proximal, ProximalCausalInference, |
| 111 | + negative_control_outcome, negative_control_exposure, |
| 112 | + double_negative_control, NegativeControlResult, |
| 113 | +) |
110 | 114 | from .principal_strat import ( |
111 | 115 | principal_strat, PrincipalStratResult, survivor_average_causal_effect, |
112 | 116 | ) |
|
156 | 160 | from .regression.glm import glm, GLMRegression, GLMEstimator |
157 | 161 | from .regression.count import poisson, nbreg, ppmlhdfe |
158 | 162 | from .neural_causal import tarnet, cfrnet, dragonnet, TARNet, CFRNet, DragonNet |
159 | | -from .causal_discovery import notears, NOTEARS, pc_algorithm, PCAlgorithm, lingam, LiNGAMResult, ges, GESResult |
| 163 | +from .causal_discovery import notears, NOTEARS, pc_algorithm, PCAlgorithm, lingam, LiNGAMResult, ges, GESResult, fci, FCIResult |
160 | 164 | from .tmle import tmle, TMLE, super_learner, SuperLearner |
161 | 165 | from .policy_learning import policy_tree, PolicyTree, policy_value |
162 | 166 | from .conformal_causal import conformal_cate, ConformalCATE |
|
0 commit comments