Displaying 1 result from an estimated 1 matches for "id_individual".
2017 Nov 13
1
Bootstrap analysis from a conditional logistic regression
...RAeVIM0nEajx0Fb>
Hello
How can I perform a bootstrap analysis from a conditional logistic regression? The model has been built using the `clogit` function (`survival` package)? The model has the following structure:
mod <- clogit(event ~ forest + log_area +forest:log_time + cluster(ID_individual) + strata(ID_strata), method = "efron", data = data , x=T, y=T)
Using bootstrapping, I would like to have a measure of uncertainty around the estimates of beta coefficients.
I am using the following code but I don't know how to consider strata and cluster arguments.
library(...