def get_box_plot_per_input_per_impl_html(self, base_file_name: str, input_num: int) -> str:
"""
A box plot for each input that shows the mean scores (over all programs) for each implementation.
"""
return self.boxplot_html_for_data("mean score", base_file_name + "__input_" + str(input_num),
self.get_statistical_property_scores_per_input_per_impl(rel_mean_func, input_num))
评论列表
文章目录