Skip to content

Commit

Permalink
[Docs] Additional details about name parameter (#1551)
Browse files Browse the repository at this point in the history
  • Loading branch information
jillnogold committed Dec 7, 2021
1 parent ad3580a commit 54e7406
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/feature-store/transformations.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ quotes_set.add_aggregation("bid", ["min", "max"], ["1h"], "10m")

Once this is executed, the feature-set will have new features introduced, with their names produced from the aggregate
parameters, using this format: `{column}_{operation}_{window}`. Thus, the example above will generate two new features:
`bid_min_1h` and `bid_max_1h`. If the function gets an optional `name` parameter features will be produced in `{name}_{operation}_{window}` format,
`bid_min_1h` and `bid_max_1h`. If the function gets an optional `name` parameter, features will be produced in `{name}_{operation}_{window}` format.
If the `name` parameter is not specified, features will be produced in `{column_name}_{operation}_{window}` format.
These features can then be fed into predictive models or be used for additional
processing and feature generation.

Expand Down

0 comments on commit 54e7406

Please sign in to comment.