Skip to content

Commit

Permalink
Upgrade ROBMA: inferenceOutputScale option is now named
Browse files Browse the repository at this point in the history
  • Loading branch information
boutinb committed Nov 22, 2024
1 parent 97e987e commit ccae491
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions inst/Upgrades.qml
Original file line number Diff line number Diff line change
Expand Up @@ -642,4 +642,24 @@ Upgrades
ChangeRename { from: "advancedAutofitRemoveFailedModels"; to: "advancedRemoveFailedModels" }
ChangeRename { from: "advancedAutofitRebalanceComponentProbabilityOnModelFailure"; to: "advancedRebalanceComponentProbabilityOnModelFailure" }
}

Upgrade
{
functionName: "RobustBayesianMetaAnalysis"
fromVersion: "0.19.1"
toVersion: "0.19.2"

ChangeJS
{
name: "inferenceOutputScale"
jsFunction: function(options)
{
switch(options["inferenceOutputScale"])
{
case "correlation": return "r";
default: return options["inferenceOutputScale"];
}
}
}
}
}

0 comments on commit ccae491

Please sign in to comment.