I ran exact logistic regression on my data set using the package elrm
I am comparing it to ordinary logistic regression.
I was able to run a bootstrap on the ordinary logistic regression, the statistics of interest I pulled were the estimated coefficient and p-value.
However, I cannot run my elrm bootstrap because I can't pull the coefficients I need from the output.
With my data the summary gives a print out:
Results:
estimate p-value p-value_se mc_size
M 0.15116 0.06594 0.00443 49000
95% Confidence Intervals for Parameters
lower upper
M 0.00156155 0.3647232
I want to extract the M estimate and p-value so I can pull these stats when I do the bootstrap. I have tried a bunch of different combinations to try and pull the values and they aren't working.
summary(model)$coefficient
summary(model)$Results
summary(model)$estimate
All of these just spit out the summary again.
Does anyone know if it is possible to extract from the elrm summary?
Any help would be appreciated.