Skip to content

Commit

Permalink
Update independence_tests.py
Browse files Browse the repository at this point in the history
removed print command without parentheses
  • Loading branch information
jakobrunge authored Mar 7, 2018
1 parent 201a4e6 commit 34178bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tigramite/independence_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -2964,7 +2964,7 @@ def get_model_selection_criterion(self, j,
Y = [(2, 0)]
Z = [(1, -1)] #(2, -1), (1, -1), (0, -3)] #[(1, -1)] #[(2, -1), (1, -1), (0, -3)] # [(2, -1), (1, -1), (2, -3)] [(1, -1)]

print cond_ind_test._get_shuffle_dist
# print cond_ind_test._get_shuffle_dist

val, pval = cond_ind_test.run_test(X, Y, Z, tau_max=tau_max)
conf_interval = cond_ind_test.get_confidence(X, Y, Z, tau_max=tau_max)
Expand All @@ -2975,4 +2975,4 @@ def get_model_selection_criterion(self, j,

print ("I(X,Y|Z) = %.2f | p-value = %.3f " % (val, pval))
if conf_interval is not None:
print ("[%.2f, %.2f]" % conf_interval)
print ("[%.2f, %.2f]" % conf_interval)

0 comments on commit 34178bf

Please sign in to comment.