Skip to content

Update 'contributors' to 'interpretation' in Visualize Results for Multivariate API Demo Notebook.ipynb #47

@TerraX3000

Description

@TerraX3000

Please provide us with the following information:

This issue is for a: (mark with an x)

- [ x] bug report -> please search issues before submitting
- [ ] feature request
- [ ] documentation issue or request
- [ ] regression (a behavior that used to work and stopped in a new release)

Minimal steps to reproduce

Run the Multivariate API Demo Notebook.ipynb notebook

Any log messages given by the failure

Traceback (most recent call last):
File "anomaly_detector/visualize.py", line 183, in
show_contribution(series, raw_result, top_anomaly)
File "anomaly_detector/visualize.py", line 148, in show_contribution
anomaly_result = [
IndexError: list index out of range

Expected/desired behavior

Display plots

OS and Version?

Windows 10 / WSL 2.0

Versions

Mention any other details that might be useful

Current example:

def show_contribution(series, raw_result, anomaly_timestamp):
anomaly_result = [x for x in raw_result['results'] if 'contributors' in x['value'] and x['timestamp'] == top_anomaly][0]
contributors = [x['variable'] for x in anomaly_result['value']['contributors']]

Fixed example:
def show_contribution(series, raw_result, anomaly_timestamp):
anomaly_result = [x for x in raw_result['results'] if 'interpretation' in x['value'] and x['timestamp'] == top_anomaly][0]
contributors = [x['variable'] for x in anomaly_result['value']['interpretation']]


Thanks! We'll be in touch soon.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions