-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #348 from mlrun/marketplace-doc-gen-29b4ace
Marketplace update from marketplace-doc-gen-29b4ace
- Loading branch information
Showing
19 changed files
with
3,467 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## Aggregate | ||
--- | ||
Performs a Rolling Aggregate on the input data according to specifications. | ||
|
||
Given: | ||
- `df_artifact`: Input DataFrame | ||
- `keys`: Labels to work by | ||
- `metrics`: List of metrics to perform the aggregate task on | ||
- `labels`: List of labels to perform the label aggregate on | ||
- `metric_aggs`: Array of aggregations to run on the metrics | ||
**ex:** `['mean', 'sum']` | ||
- `label_aggs`: Array of aggregations to run on the labels | ||
**ex:** `['max']` | ||
- `suffix`: A suffix to add to the aggregations (**ex:** '_daily') | ||
- `window`: Window size, can be `int` for number of rows, or in time interval string if timestamp index is available | ||
- `center`: Perform aggregation on the sample at the window's center | ||
- `inplace`: | ||
- **True:** Returns only the newly aggregated data | ||
- **False:** Returns the newly aggregated data with the original dataset |
Oops, something went wrong.