I am maintaining a package that uses BayesLogit
for Bayesian Logistic regression using the Polya-Gamma latent variable technique and return samples from a Markov Chain-Monte Carlo (MCMC). BayesLogit
is no longer on CRAN and I can install a previous version with
install_version("BayesLogit", version = "0.6")
But this hack will prevent the submission of my package to CRAN. The source code was last updated a year ago, so I don't think it will return to CRAN.
I found another package that does the same thing with a similar syntax. But this package is not on CRAN either and installs with
devtools::install_github("kasparmartens/PolyaGamma")
Does a CRAN package implement Bayesian logistic regression with a Polya-Gamma scheme and return the MCMC samples?