We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e4d702 commit df4aabdCopy full SHA for df4aabd
1 file changed
src/pasteur/view.py
@@ -96,7 +96,7 @@ def filter_by_keys(
96
return table.loc[keys.index]
97
except KeyError:
98
# Gracefull fallback if a part of a dataset was pruned
99
- return keys.join(table)
+ return keys.join(table, how='inner')
100
else:
101
mask = table[col].isin(keys.index)
102
del keys
0 commit comments