Bayes Factors as floats (in stead of strings) #313
-
Hi! I've noticed that Bayes Factors are put in the output df's as strings, rather than floats (like most other output statistics are). Is there a reason for this? It seems more intuitive (and useful) if the Bayes Factors are a put in the df as numeric value. Is this something you would consider doing? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @Andre3582, This is done on purpose to avoid an annoying behavior where BF with very large or very small values force pandas to display the entire dataframe in scientific notation. However, you can disable this behavior with: ``python
|
Beta Was this translation helpful? Give feedback.
Hi @Andre3582,
This is done on purpose to avoid an annoying behavior where BF with very large or very small values force pandas to display the entire dataframe in scientific notation. However, you can disable this behavior with:
``python
pg.options['round.column.BF10'] = None