# do some small-scale BMA for demonstration
data(datafls)
mm=bms(datafls[,1:10],nmodel=20)
#print info on the best 20 models
print(mm$topmod)
print(mm$topmod,digits=10)
#equivalent:
cbind(mm$topmod$lik(),mm$topmod$ncount())
#now print info only for the second-best model:
print(mm$topmod[2])
#compare 'Included Covariates' to:
topmodels.bma(mm[2])
#and to
as.vector(mm$topmod[2]$bool_binary())
Run the code above in your browser using DataLab