|
1 | | -# stochtree 0.1.2 |
| 1 | +# stochtree 0.2.0 |
2 | 2 |
|
3 | 3 | ## New Features |
4 | 4 |
|
|
17 | 17 |
|
18 | 18 | * Fixed indexing bug in cleanup of grow-from-root (GFR) samples in BART and BCF models |
19 | 19 | * Avoid using covariate preprocessor in `computeForestLeafIndices` function when a `ForestSamples` object is provided (rather than a `bartmodel` or `bcfmodel` object) |
| 20 | +* Correctly compute feature-specific split counts in R and Python ([#220](https://github.com/StochasticTree/stochtree/issues/220)) |
| 21 | +* Avoid override of user-specified `num_burnin` parameter in BCF models with an internal propensity score ([#222](https://github.com/StochasticTree/stochtree/issues/222)) |
| 22 | +* Outcome predictions correctly incorporate adaptive coding of untreated observations in BCF with binary treatment ([#231](https://github.com/StochasticTree/stochtree/issues/231)) |
| 23 | + |
| 24 | +## Documentation Improvements |
| 25 | + |
| 26 | +* Clarify structure / layout of samples when users request multiple chains in BART and BCF models ([#220](https://github.com/StochasticTree/stochtree/issues/220)) |
20 | 27 |
|
21 | 28 | ## Other Changes |
22 | 29 |
|
23 | | -* Standardized naming conventions for out of sample data in prediction and posterior computation routines (we raise warnings when data are passed through `y`, `X`, `Z`, etc... arguments) |
24 | | - * Covariates / features are always referred to as "covariates" rather than "X" |
25 | | - * Treatment is referred to as "treatment" rather than "Z" |
26 | | - * Propensity scores are referred to as "propensity" rather than "pi_X" |
27 | | - * Outcomes are referred to as "outcome" rather than "Y" |
| 30 | +* Standardized naming conventions for data elements of BART and BCF models across R and Python interfaces |
| 31 | + * Covariates / features are always referred to as "`X`" |
| 32 | + * Treatment is always referred to as "`Z`" |
| 33 | + * Propensity scores are referred to as "`propensity`" (rather than "`pi`") |
| 34 | + * Outcomes are referred to as "`y`" |
| 35 | + * Basis vectors for leaf-wise regression models in forest terms are referred to as "`leaf_basis`" |
| 36 | + * Group labels for additive random effects models are referred to as "`rfx_group_ids`" |
| 37 | + * Basis vectors for additive random effects models are referred to as "`rfx_basis`" |
| 38 | +* Run-time checks for variables that are treated as continuous but have many "ties" (which presents issues with the current GFR algorithm) when only GFR samples are requested ([#243](https://github.com/StochasticTree/stochtree/pull/243)) |
28 | 39 |
|
29 | 40 | # stochtree 0.1.1 |
30 | 41 |
|
|
0 commit comments