Is there a boolean data type in kedro? e.g. if I h...
# questions
m
Is there a boolean data type in kedro? e.g. if I have a node that I want to return True or False, what data type is best practice to use?
c
I think if you used a
MemoryDataset
the node's output would remain a Boolean when passed to the downstream node(s). You just couldn't slice the pipeline at this node.
this 1
1