bland_atlman_figure ============================================== .. py:function:: petpal.utils.testing_utils.bland_atlman_figure(axes, fit_values: numpy.ndarray, true_values: numpy.ndarray, ax_titles: list[str], sca_kwargs: dict = None, bland_kwargs: dict = None) Generates a Bland-Altman plot for the specified axes, fitted and true values. The function is intended to be used to generate multiple sets of figures for comparing multiple fit parameters. The format of the values is ``values=[[first_param, second_param, ...], [first_param, second_param, ...], ..]``. :param axes: The axes on which to generate the Bland-Altman plot. :type axes: list[matplotlib.axes] :param fit_values: The fitted values to plot. :type fit_values: np.ndarray :param true_values: The true values to plot. :type true_values: np.ndarray :param ax_titles: Titles of the axes. :type ax_titles: list[str] :param sca_kwargs: Additional keyword arguments for the scatter plot. Defaults to red dots. :type sca_kwargs: dict, optional :param bland_kwargs: Additional keyword arguments for Bland-Altman lines. Defaults to red lines. :type bland_kwargs: dict, optional .. note:: Bland-Altman plot is a method of data plotting used in analyzing the agreement between two different assays.