CONAN.geepee.GPSaveObj.predict
==============================

.. py:method:: CONAN.geepee.GPSaveObj.predict(x=None, return_var=False, series_id=0)

   Predict the GP at the given x values.

   :param x: The x values at which to predict the GP. If None, use the saved x values.
   :type x: array-like, optional
   :param return_var: If True, return the variance of the GP prediction.
   :type return_var: bool, optional
   :param series_id: For multiseries GP fit with Spleaf, the series ID (dimension) for the GP prediction. Default is 0.
   :type series_id: int, optional

   :returns: * *array-like* -- The GP prediction at the given x values.
             * *If return_var is True, returns a tuple of (mean, variance).*
             * *If return_var is False, returns only the mean.*

