You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an m.scale argument in bma that allows users to record how the data were transformed before going into the model. This argument is then used to determine the back-transformation for the indicator.
Originally, if m.scale="logit" then the inverse logit transformation was used, such that the resulting index would be bounded between 0 and 1 (as the original data going in). However, we changed this to an exponentiation
logit=x<- exp(x), # Counter-intuitively, since we want geometric mean odds
In effect, it means that the indicator values are on the odds scale, not the occupancy scale.
This has caused an external user to misinterpret the results: these are fitted values, so it makes sense for them to be on the same scale as the measurements.
Before making any change we should evaluate the implications. Especially, how are the indicators are currently being run? I think they are using log transformed occupancy data, i.e. m.scale="log", such that the resulting index is the geometric mean occupancy.
The text was updated successfully, but these errors were encountered:
There is an
m.scale
argument inbma
that allows users to record how the data were transformed before going into the model. This argument is then used to determine the back-transformation for the indicator.Originally, if
m.scale="logit"
then the inverse logit transformation was used, such that the resulting index would be bounded between 0 and 1 (as the original data going in). However, we changed this to an exponentiationBRCindicators/R/bayesian_meta_analysis.R
Line 304 in 31b7dc6
In effect, it means that the indicator values are on the odds scale, not the occupancy scale.
This has caused an external user to misinterpret the results: these are fitted values, so it makes sense for them to be on the same scale as the measurements.
Before making any change we should evaluate the implications. Especially, how are the indicators are currently being run? I think they are using log transformed occupancy data, i.e.
m.scale="log"
, such that the resulting index is the geometric mean occupancy.The text was updated successfully, but these errors were encountered: