sct-pipeline / csa-atrophy

Evaluate the sensitivity of atrophy detection with SCT
https://csa-atrophy.readthedocs.io/
MIT License
1 stars 0 forks source link

Stat formula error in README #80

Open PaulBautin opened 4 years ago

PaulBautin commented 4 years ago

Formula in code: df_sub['rescale_estimated'] = df_sub['mean'].div(df_sub['csa_without_rescale'])

Formula in README: MEAN[CSA(sI, rX, :) / CSA(sI, 1, :)]

Should be: MEAN[ CSA(sI, rX, :) ] / MEAN[ CSA(sI, 1, :) ]