You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 11, 2022. It is now read-only.
| `coef(r)` | `r.coef` | Vector of point estimates for all coefficients including covariates |
185
185
| `vcov(r)` | `r.vcov` | Variance-covariance matrix for estimates in `coef` |
186
186
| `vce(r)` | `r.vce` | Covariance estimator |
@@ -189,8 +189,8 @@ with treatment of type `TR`.
189
189
| `nobs(r)` | `r.nobs` | Number of observations (table rows) involved in estimation |
190
190
| `outcomename(r)` | `r.yname` | Name of the outcome variable |
191
191
| `coefnames(r)` | `r.coefnames` | Names (`Vector{String}`) of all coefficients including covariates |
192
-
| `treatcells(r)` | `r.treatcells` | Tables.jl-compatible tabular description of treatment coefficients in the order of `coefnames` (without covariates) |
193
-
| `weights(r)` | `r.weights` | Column name of the weight variable (if specified) |
192
+
| `treatcells(r)` | `r.treatcells` | `Tables.jl`-compatible tabular description of treatment coefficients in the order of `coefnames` (without covariates) |
193
+
| `weights(r)` | `r.weights` | Name of the column containing sample weights (if specified) |
194
194
| `ntreatcoef(r)` | `size(treatcells(r), 1)` | Number of treatment coefficients |
195
195
| `treatcoef(r)` | `view(coef(r), 1:ntreatcoef(r))` | A view of treatment coefficients |
196
196
| `treatvcov(r)` | `(N = ntreatcoef(r); view(vcov(r), 1:N, 1:N))` | A view of variance-covariance matrix for treatment coefficients |
Copy file name to clipboardExpand all lines: src/parallels.jl
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ show(io::IO, ::Unconditional) =
22
22
"""
23
23
unconditional()
24
24
25
-
Alias of [`Unconditional()`](@ref).
25
+
Alias for [`Unconditional()`](@ref).
26
26
"""
27
27
unconditional() =Unconditional()
28
28
@@ -56,7 +56,7 @@ show(io::IO, ::Exact) =
56
56
"""
57
57
exact()
58
58
59
-
Alias of [`Exact()`](@ref).
59
+
Alias for [`Exact()`](@ref).
60
60
"""
61
61
exact() =Exact()
62
62
@@ -252,7 +252,7 @@ See also [`notyettreated`](@ref).
252
252
253
253
# Fields
254
254
- `e::Tuple{Vararg{ValidTimeType}}`: group indices for units that received the treatment relatively late.
255
-
- `ecut::Tuple{Vararg{ValidTimeType}}`: user-specified period(s) when units in a group in `e` started to receive treatment.
255
+
- `ecut::Tuple{Vararg{ValidTimeType}}`: user-specified period(s) when units in a group in `e` started to receive treatment or show anticipation effects.
256
256
- `c::C`: an instance of [`ParallelCondition`](@ref).
257
257
- `s::S`: an instance of [`ParallelStrength`](@ref).
0 commit comments