make_union
Construct a FeatureUnion from the given transformers.
This is a shorthand for the FeatureUnion constructor; it does not require, and does not permit, naming the transformers. Instead, they will be given names automatically based on their types. It also does not allow weighting.
Parameters:
*transformers: list of estimatorsn_jobs: int, optionalNumber of jobs to run in parallel (default 1).
Returns:
f: FeatureUnion
Examples
Last updated