-
Maybe a simple question but here's a simple reproducible example (it happens with any example for me though):
I'm trying to just extract the Bayes factor of 0.4969 programmatically. When I call from the class Am I doing something wrong, and if so, what is the proper way to gather that number from the results? Thanks for your help |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You're extracting the log Bayes factor. Internally it's stored that way for computational stability when the BF gets very large/small. Covert to a BF with |
Beta Was this translation helpful? Give feedback.
You're extracting the log Bayes factor. Internally it's stored that way for computational stability when the BF gets very large/small. Covert to a BF with
exp()
.