Azure-Samples / Azure-Samples/AnomalyDetector
Update 'contributors' to 'interpretation' in Visualize Results for Multivariate API Demo Notebook.ipynb
- Dominant language
- Jupyter Notebook
- Stars
- 110
- Forks
- 161
- PR merge metrics
- No merged PRs in 30d
Description
> 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.
Contributor guide
Assessment
This issue has not been assessed yet.