Skip to content

Box plot does not need "stderr" #7

@carleshf

Description

@carleshf

Box-plot visualization do not need "stderr" so it should not be mandatory to have on the metric-value block.

An idea for the update of the tools could be (catalogs.py):

            # add assessment metrics values, as inline data
            if "value" in min_d_metrics:
                metric_value = min_d_metrics["value"]
                if "stderr" in min_d_metrics.keys():      # start the update
                    error_value = min_d_metrics["stderr"] # .
                else:                                     # .
                    error_value = None                    # end the update
                datalink_payload = {
                    "schema_url": SINGLE_METRIC_SCHEMA_ID,
                    "inline_data": {
                        "value": metric_value,
                        "error": error_value,
                    }
                }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions