Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions howso/client/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ class FeatureAttributes(TypedDict):
`max` in the `bounds` attribute.

Examples:

- degrees: values 0-359, cycle_length = 360
- days: values 0-6, cycle_length = 7
- hours: values 0-23, cycle_length = 24
Expand All @@ -305,6 +306,7 @@ class FeatureAttributes(TypedDict):
Default is `string` for nominals and `number` for continuous.

Valid values:

- string: nominal or continuous
- number: nominal or continuous
- formatted_date_time: nominal or continuous
Expand Down Expand Up @@ -359,6 +361,7 @@ class FeatureAttributes(TypedDict):
operations on feature values referenced via feature name and row offset.

Examples:

- ``(call value {feature \"x\" lag 1})``:
Use value for feature 'x' from the previously processed row (offset 1, one lag value).
- ``(- (call value {feature \"y\" lag 0}) (call value {feature \"x\" lag 1}))``:
Expand Down
Loading