library(graper) library(ggplot2)
Note that the implementation of logistic regression is still experimental. In particular, it has not yet been optimized in terms of computational speed and can be slow for large data sets. Furthermore, calculations of the evidence lower bound are currently not implemented to monitor convergence of the variational inference and the algorithm will stop only when the maximum number of iterations has been reached. This needs to be set to a sufficiently large number.
Create an example data set with 4 groups, 100 train + 100 test samples and 320 features.
set.seed(123) data <- makeExampleData(n=200, p=320, g=4, pis=c(0.05, 0.1, 0.05, 0.1), gammas=c(0.1, 0.1, 10, 10), response="bernoulli") # training data set Xtrain <- data$X[1:100, ] ytrain <- data$y[1:100] # annotations of features to groups annot <- data$annot # test data set Xtest <- data$X[101:200, ] ytest <- data$y[101:200]
graper
is the main function of this package,
which allows to fit the proposed Bayesian models
with different settings on the prior (by setting spikeslab
to FALSE or TRUE)
and the variational approximation (by setting factoriseQ
to FALSE or TRUE).
By default, the model is fit with a sparsity promoting spike-and-slab prior
and a fully-factorised mean-field assumption.
The ELBO is currently not calculated in the logisitc regession framework.
fit <- graper(Xtrain, ytrain, annot, verbose=FALSE, family="binomial", calcELB=FALSE) fit
The variational Bayes (VB) approach directly yields posterior distributions for each parameter. Note, however, that using VB these are often too concentrated and cannot be directly used for construction of confidence intervals etc. However, they can provide good point estimates.
plotPosterior(fit, "gamma", gamma0=data$gammas) plotPosterior(fit, "pi", pi0=data$pis)
The estimated coefficients, their posterior inclusion probabilities and the intercept are contained in the result list.
# get coefficients (without the intercept) beta <- coef(fit, include_intercept=FALSE) # beta <- fit$EW_beta # plot estimated versus true beta qplot(beta, data$beta)
# get intercept intercept <- fit$intercept
# get estimated posterior inclusion probabilities per feature pips <- getPIPs(fit)
The function predict
can be used to make prediction on new data.
Here, we illustrate its use by predicting the response
on the test data defined above.
preds <- predict(fit, Xtest)
sessionInfo()
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.