-
Notifications
You must be signed in to change notification settings - Fork 23
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 #89 from RADAR-CNS/release-0.3
Release 0.3
- Loading branch information
Showing
15 changed files
with
154 additions
and
79 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
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
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,10 @@ | ||
{ | ||
"namespace": "org.radarcns.stream.aggregator", | ||
"type": "record", | ||
"name": "AggregateList", | ||
"doc": "A list of aggregated data, each item aggregating over a single field.", | ||
"version": "1.0.0", | ||
"fields": [ | ||
{ "name": "fields", "type": {"type": "array", "items": "NumericAggregate" }, "doc": "Aggregates of each of the underlying elements." } | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
13 changes: 7 additions & 6 deletions
13
...stream/aggregator/double_aggregation.avsc → .../stream/aggregator/numeric_aggregate.avsc
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 |
---|---|---|
@@ -1,15 +1,16 @@ | ||
{ | ||
"namespace": "org.radarcns.stream.aggregator", | ||
"type": "record", | ||
"name": "DoubleAggregation", | ||
"doc": "Result of data aggregation.", | ||
"name": "NumericAggregate", | ||
"doc": "Basic statistics on a numeric value type.", | ||
"version": "1.0.0", | ||
"fields": [ | ||
{ "name": "name", "type": "string", "doc": "Name of the field that has been aggregated over." }, | ||
{ "name": "min", "type": "double", "doc": "State the minimum between accumulated values." }, | ||
{ "name": "max", "type": "double", "doc": "State the maximum between accumulated values." }, | ||
{ "name": "sum", "type": "double", "doc": "State the sum of accumulated values." }, | ||
{ "name": "count", "type": "double", "doc": "Count the accumulated values." }, | ||
{ "name": "avg", "type": ["null", "double"], "doc": "State the avg between accumulated values.", "default": null }, | ||
{ "name": "quartile", "type": ["null", {"type": "array", "items": "double"}], "doc": "Quartile of accumulated values.", "default": null }, | ||
{ "name": "iqr", "type": ["null", "double"], "doc": "State the interquartile range between accumulated values.", "default": null } | ||
{ "name": "count", "type": "int", "doc": "Count the accumulated values." }, | ||
{ "name": "mean", "type": ["null", "double"], "doc": "State the arithmetic mean between accumulated values.", "default": null }, | ||
{ "name": "quartile", "type": ["null", {"type": "array", "items": "double"}], "doc": "Quartile of accumulated values.", "default": null } | ||
] | ||
} |
3 changes: 2 additions & 1 deletion
3
...m/aggregator/phone_usage_aggregation.avsc → ...eam/aggregator/phone_usage_aggregate.avsc
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
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
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
Binary file not shown.
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
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
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
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
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
Oops, something went wrong.