Skip to content

Commit cace966

Browse files
committed
plot slices w/ one pint
1 parent 155c3bd commit cace966

File tree

2 files changed

+4
-15
lines changed

2 files changed

+4
-15
lines changed

cyclops/report/templates/cyclops_generic_template.jinja

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -270,15 +270,15 @@
270270

271271
{% macro render_overview(name, comp) %}
272272
{{ render_perf(name, comp) }}
273-
{% set val = {'history': false} %}
273+
{# {% set val = {'history': false} %}
274274
{% for metric_card in comp.metric_cards.collection%}
275275
{% if metric_card.history|length > 1 %}
276276
{% set _ = val.update({'history':true}) %}
277277
{% endif %}
278278
{% endfor %}
279-
{% if val['history'] %}
280-
{{ render_perf_over_time(name, comp) }}
281-
{% endif %}
279+
{% if val['history'] %} #}
280+
{{ render_perf_over_time(name, comp) }}
281+
{# {% endif %} #}
282282
{% endmacro %}
283283

284284
{% macro render_objects(section)%}

docs/source/tutorials/kaggle/heart_failure_prediction.ipynb

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1126,17 +1126,6 @@
11261126
"fairness_plot.show()"
11271127
]
11281128
},
1129-
{
1130-
"cell_type": "markdown",
1131-
"metadata": {},
1132-
"source": [
1133-
"### Performance over time\n",
1134-
"\n",
1135-
"We can monitor the change of performance metrics over time by leveraging historical reports. This involves using the `get_metrics_trends` function to gather prior metrics and merge them with recent results. We can specify which metrics and slices we wish to observe. Once the data is collected, we generate the plot using the `metrics_trends` method from the plotter, which can then be integrated into the report.\n",
1136-
"\n",
1137-
"Please note, for the purpose of this tutorial, we will create three dummy reports to demonstrate the process of plotting these metric trends."
1138-
]
1139-
},
11401129
{
11411130
"cell_type": "markdown",
11421131
"metadata": {},

0 commit comments

Comments
 (0)