pastas.model.Model.fit_report ============================= .. py:method:: pastas.model.Model.fit_report(corr: bool = False, stderr: bool = False, warnings: bool = True, output: str = None) -> str Method that reports on the fit after a model is optimized. :param corr: If True the parameter correlations are shown. :type corr: bool, optional :param stderr: If True the standard error of the parameter values are shown. Please be aware of the conditions for reliable uncertainty estimates, more information here: https://pastas.readthedocs.io/stable/examples/diagnostic_checking.html :type stderr: bool, optional :param warnings: print warnings in case of optimization failure, parameters hitting bounds, or length of responses exceeding calibration period. :type warnings: bool, optional :param output: deprecated argument, use corr and stderr arguments instead. :type output: str, optional (deprecated) :returns: **report** -- String with the report. :rtype: str .. rubric:: Examples This method is called by the solve method if report=True, but can also be called on its own:: >>> print(ml.fit_report) .. rubric:: Notes The reported values for the fit use the residuals time series where possible. If interpolation is used this means that the result may slightly differ compared to using ml.simulate() and ml.observations(). .. !! processed by numpydoc !!