We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I want to use the DashboardPanelDistribution in my dashboard and i have tested the following. In my report I set:
report = Report(metrics=`ColumnDistributionMetrics(column_name="type"), timestamp=datetime.datetime.now(), tags=[])
Then the project is set as:
project = ws.create_project(MY_PROJECT_NAME) project.dashboard.add_panel( DashboardPanelDistribution( title="Type distribution", filter=ReportFilter(metadata_values={}, tag_values=[]), value=PanelValue( field_path=ColumnDistribution.Metric.fields.current, metric_id="ColumnDistributionMetric", metric_args={"column_name.name": "type"} ), barmode=HistBarMode.STACK )
then I add the reports as:
ws.add_report(report)
However, I get the following error when running evidently ui: TypeError: Subscripted generics cannot be used with class and instance checks
evidently ui
TypeError: Subscripted generics cannot be used with class and instance checks
My setup is:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I want to use the DashboardPanelDistribution in my dashboard and i have tested the following. In my report I set:
Then the project is set as:
then I add the reports as:
However, I get the following error when running
evidently ui
:TypeError: Subscripted generics cannot be used with class and instance checks
My setup is:
The text was updated successfully, but these errors were encountered: