Why do I get a Bayes factor that is a decimal point only (no values)? For example, in a comparison of 2 models, one value was 1.037 (base model), but the full model had a value that was just a decimal point. This is a simple Bayesian regression using the auto data provided by Stata. Below are the commands that I used.
sysuse auto
reg price mpg weight headroom
bayes, hpd : regress price mpg weight headroom
est sto full
bayes, hpd : regress price mpg weight
est sto base
bayesstats ic full base, bayesfactor
sysuse auto
reg price mpg weight headroom
bayes, hpd : regress price mpg weight headroom
est sto full
bayes, hpd : regress price mpg weight
est sto base
bayesstats ic full base, bayesfactor
Comment