Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed bug in causal effects regarding Wright and data_transform #209

Merged
merged 1 commit into from
Apr 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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