Skip to content

Commit

Permalink
Fix typo in computation of SDQualy
Browse files Browse the repository at this point in the history
  • Loading branch information
bwiernik committed Oct 16, 2017
1 parent c048d84 commit 7b2c844
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OPMA functions.vb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
' Open Psychometric Meta-Analyis (Excel)
' Created by Brenton M. Wiernik
' version 1.0.0
' version 1.0.1

' Open Psychometric Meta-Analysis (Excel) -- VBA scripts for conducting psychometric
' meta-analysis using Microsoft Excel.
Expand Down Expand Up @@ -430,7 +430,7 @@ If CorrectRyy And Not SpecDisty Then
MeanRyy = SumRyy / SumRyyFreq
SDRyy = Sqr(WorksheetFunction.Max(0, (SumRyySq / SumRyyFreq) - (SumRyy / SumRyyFreq) ^ 2))
MeanQualy = SumQualy / SumRyyFreq
SDQualy = Sqr(WorksheetFunction.Max(0, (SumRxx / SumRxxFreq) - (SumQualx / SumRxxFreq) ^ 2))
SDQualy = Sqr(WorksheetFunction.Max(0, (SumRyy / SumRyyFreq) - (SumQualy / SumRyyFreq) ^ 2))

' Prespecified ryy distribution
ElseIf CorrectRyy And SpecDisty Then
Expand Down
Binary file modified Open Psychometric Meta-Analysis - r - spreadsheet.xlsm
Binary file not shown.

0 comments on commit 7b2c844

Please sign in to comment.