Description Usage Arguments Value Author(s) References Examples
This, combined with md_bayes_gen() produces tables of results compatible with EI table of results.
1 | md_bayes_table(md_results)
|
md_results |
Results object from md_bayes_gen() function. |
Data.frame object of candidate (rows) and race (columns) RxC results. This, combined with results from ei_est_gen() sends to the ei_rc_good_table() function for combined table results and comparisons.
Loren Collingwood <loren.collingwood@ucr.edu>
eiPack, King et. al. (http://gking.harvard.edu/eiR)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# TOY DATA EXAMPLE
canda <- c(10,8, 10, 4, 8)
candb <- 20-canda
white <- c(15, 12, 18, 6, 10)
black <- 20 - white
toy <- data.frame(canda, candb, white, black)
# Generate formula for passage to ei.reg.bayes() function
form <- formula(cbind(canda,candb) ~ cbind(black, white))
# Then execute md_bayes_gen(); not run here due to time
res <- md_bayes_gen(toy, form, total_yes=FALSE, ntunes=1, thin=1,totaldraws=100,sample=10,burnin=1,
ci_TRUE=F)
md_bayes_table(res)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.