-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
release fixes #258
release fixes #258
Conversation
bayesianMetaAnalysisAdvanced.priorH1FEValue = 0.5 | ||
bayesianMetaAnalysisAdvanced.priorH0REValue = 0 | ||
bayesianMetaAnalysisAdvanced.priorH1REValue = 0 | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This won't work: the element has no reference to bayesianMetaAnalysisAdvanced
.
It's better to make 4 properties
property float priorH0FEValue: 0.25
property float priorH1FEValue: 0.25
property float priorH0REValue: 0.25
property float priorH1REValue: 0.25
That can referred by the parent object. I will make a commit for this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh I see the logic is already implemented in BayesianMetaAnalysisAdvanced.qml, so all this onCheckedChanged can be removed.
I see one difference in the logic: if the value is constrainedRandom
, it has here the same value as averaging
(0.25 for every properties), but in the BayesianMetaAnalysisAdvanced, as it will take the default value (0).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did not change this however, it was added in the rebase
@@ -651,9 +651,9 @@ Upgrades | |||
|
|||
ChangeJS | |||
{ | |||
name: "inferenceOutputScale" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you move the name property? I think changeJS should have the name of the option you want to change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I also did not change this however, it was added in the rebase. Not sure how that could have happened? I will ask Don tomorrow, maybe he understands.
fixes: https://github.com/jasp-stats/jasp-test-release/issues/2789
fixes: https://github.com/jasp-stats/jasp-test-release/issues/2782
fixes: https://github.com/jasp-stats/jasp-test-release/issues/2788