matrix.Matrix.plot_interpolator

Matrix.plot_interpolator(criterion_name: str, start=0, end=10)

Visualize the interpolator function used. Needs to explicitly show the plot with plt.show()

Parameters
  • criterion_name (str) – The name of the criterion to view.

  • start (int, optional) – The lower bound of the x-axis (criterion value) to plot. The default is 0.

  • end (int, optional) – The upper bound of the x-axis (criterion value) to plot. The default is 10.

See also

scipy.interpolate.interp1d : The interpolator used