Skip to content

Commit

Permalink
Update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nilshg committed Jan 10, 2024
1 parent 515c71b commit bf4e61b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,14 @@ Synthetic Difference-in-Differences Model
```

The model estimate can also be accessed as `sdid_model.τ̂`, and the standard error as
`sdid_model.se_τ̂`. Estimation of standard errors is currently not implemented.
`sdid_model.se_τ̂`. The only algorithm for estimation of standard errors currently implemented is
the placebo algorithm, in which the estimator is sequentially applied to each control unit. By
default, standard errors are not estimated, the `se` keyword can be used to do so:

```
julia> fit!(sdid_model; se = :placebo)
Synthetic Difference-in-Differences Model
Model is fitted
Impact estimate: -15.604
(9.31)
```

0 comments on commit bf4e61b

Please sign in to comment.