median_convergence_plot#

post_processors.median_convergence_plot(type_x='iterations', err_name='errors', time_name='timings', mean=False)#

Computes the mean or median of several converge plots with respect to either time or iterations (this is determined by type_x). By mean/median of several curve, we mean the mean/median at each type_x value.

Parameters:
  • df (pandas dataframe) – input dataframe with error at each iteration split in rows requires timings to be aligned by linear interpolation first.

  • type_x (string, default timings) – choose if the median is over time or over iterations.

  • means (boolean, default False) – if True, compute the mean of the curves, otherwise the median is computed.