Skip to content

Commit 0dc2294

Browse files
authored
Update standard deviation calculation for uncertainty
1 parent 78f5076 commit 0dc2294

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ cs_committee_iso = calculator.get_cs_iso_ensemble(frame)
9191
cs_committee_tensor = calculator.get_cs_tensor_ensemble(frame)
9292
9393
# Compute uncertainty estimates for the isotropic chemical shieldings
94-
cs_iso_uncertainty = np.std(cs_committee_iso, axis=1)
94+
cs_iso_uncertainty = np.std(cs_committee_iso, axis=1, ddof=1)
9595
9696
# Compute the chemical shielding anisotropy (from mean tensor prediction)
9797

0 commit comments

Comments
 (0)