Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Machine_Learning/causal_forest.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ For more information, see [Explicitly Optimizing on Causal Effects via the Causa

## Python

The [**econml**](https://econml.azurewebsites.net/spec/spec.html) package from Microsoft provides a range of causal machine learning functions, including deep instrumental variables, doubly robust learning, double machine learning, and [causal forests](https://econml.azurewebsites.net/spec/estimation/forest.html#causalforest-aka-forest-double-machine-learning). As in the R example below, we will download some crime data and look at the effect of one variable ('pctymle', the % of young males, assumed to be exogenous) on another ('crmrte', the crime rate).
The [**econml**](https://econml.azurewebsites.net/spec/spec.html) package from Microsoft provides a range of causal machine learning functions, including deep instrumental variables, doubly robust learning, double machine learning, and [causal forests](https://econml.azurewebsites.net/spec/estimation/forest.html#causalforest-aka-forest-double-machine-learning). As in the example below, we will download some crime data and look at the effect of one variable ('pctymle', the % of young males, assumed to be exogenous) on another ('crmrte', the crime rate).

```python
# Use "pip install econml" on the command line to install the package
Expand Down