Skip to content

Commit

Permalink
fixed dprime
Browse files Browse the repository at this point in the history
  • Loading branch information
DominiqueMakowski committed Sep 7, 2018
1 parent bba8ed9 commit 8f166ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neurokit/statistics/routines.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def compute_dprime(n_Hit=None, n_Miss=None, n_FA=None, n_CR=None):


# dprime
dprime = scipy.stats.norm.ppf(hit_rate_adjusted) - scipy.stats.norm.ppf(hit_rate_adjusted)
dprime = scipy.stats.norm.ppf(hit_rate_adjusted) - scipy.stats.norm.ppf(fa_rate_adjusted)

# beta
zhr = scipy.stats.norm.ppf(hit_rate_adjusted)
Expand Down

0 comments on commit 8f166ad

Please sign in to comment.