Skip to content

Commit

Permalink
Merge pull request #209 from jakobrunge/developer
Browse files Browse the repository at this point in the history
fixed bug in causal effects regarding Wright and data_transform
  • Loading branch information
jakobrunge authored Apr 13, 2022
2 parents 563f329 + 5c1d15b commit 26950d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def run(self):
# Run the setup
setup(
name="tigramite",
version="5.0.1.15",
version="5.0.1.16",
packages=["tigramite", "tigramite.independence_tests", "tigramite.toymodels"],
license="GNU General Public License v3.0",
description="Tigramite causal discovery for time series",
Expand Down
2 changes: 1 addition & 1 deletion tigramite/data_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def construct_array(self, X, Y, Z, tau_max,
for idx, cde in index_code.items():
# Check if the letter index is in the mask type
if (mask_type is not None) and (idx in mask_type):
print(idx, cde, xyz, xyz == cde)
# print(idx, cde, xyz, xyz == cde)
# If so, check if any of the data that correspond to the
# letter index is masked by taking the product along the
# node-data to return a time slice selection, where 0 means
Expand Down

0 comments on commit 26950d7

Please sign in to comment.