evidently icon indicating copy to clipboard operation
evidently copied to clipboard

ModuleNotfoundError: No module named 'evidently.report'

Open sanram905 opened this issue 3 years ago • 4 comments

Hello!

I was trying the example notebook 'metrics_presets.ipynb' and can not load report module. Is it specific to some version of evidently? I have already been using evidently for classification performance, data drift and data quality dashboards, which look great. Now I need the report for getting some performance metrics for custom visualisation, but it wont load evidently.report module.

thanks for your awesome work and would appreciate your help on this issue

sanram905 avatar Sep 03 '22 11:09 sanram905

Hi, This is WIP reports, we haven't released it yet. It works on version from sources only for now.

Liraim avatar Sep 03 '22 12:09 Liraim

Thanks much for prompt response. I tried it with source and it works perfectly well for my use case where I need to run performance reports over subsets of data (group by some category) and get quality metric to further calculate some custom metrics per category. Now I put a table (where cells are color coded based on variable value) and barchart in plotly horizontally in one figure. the code works fine. But when I define it in a widget, the table doesn't get displayed in my dashboard, but the barchart does. I haven't seen the use of go.Table in Evidently source code, is it not supported? Thanks again

sanram905 avatar Sep 04 '22 14:09 sanram905

Yes, we don't have support for plotly tables, but you can use simple version of tables from Evidently:

BaseWidgetInfo(
    title="",
    type="table",
    params={"header": ["value", "count"], "data":[['a', 1], ['b', 2]]},
    size=2,
)```

Liraim avatar Sep 08 '22 10:09 Liraim

Does the Evidently table support color code based on cell value? And how about plotly subplots or multiple yaxis ?? are they supported?

sanram905 avatar Sep 09 '22 14:09 sanram905