Closed
Description
Roughly speaking, this should look like:
from functools import reduce
def merge(datasets, **kwargs):
return reduce(lambda x, y: x.merge(y, **kwargs), datasets)
We use already use this in auto_combine
.
Including it would make for a better user experience that requiring users to write it themselves.