Skip to content

Commit

Permalink
Merge pull request #233 from jakobrunge/developer
Browse files Browse the repository at this point in the history
further fixes for multiple dataset functionality
  • Loading branch information
jakobrunge authored Aug 4, 2022
2 parents b59f59a + b7d11b5 commit 6724e51
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 27 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.1.0.1",
version="5.1.0.2",
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/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1230,7 +1230,7 @@ def __init__(self,

# Default value for the mask
if dataframe.mask is not None:
mask = dataframe.mask[0]
mask = {0: dataframe.mask[0]}
else:
mask = {0: np.zeros(dataframe.values[0].shape, dtype='bool')}
# Get the dataframe shape
Expand Down
Loading

0 comments on commit 6724e51

Please sign in to comment.