I am estimating a BayesFactor of proportions using the comand proportionBF() from R. I want to replicate the example from wikipedia https://en.wikipedia.org/wiki/Bayes_factor. The output from the proportionBF comand is in log, so I transform the output of log trying to coincide results with the example of wikipedia, by I am making a mistake. My code is:
library(BayesFactor)
bf = proportionBF(115, 200, p = 1/2)
exp(bf@bayesFactor$bf)
Can anybody help me to understand which is my miskate.