pycaret.time_series.remove_metric#

pycaret.time_series.remove_metric(name_or_id: str)[source]#

Removes a metric from CV.

Example

>>> from pycaret.datasets import get_data
>>> data = get_data('airline')
>>> from pycaret.time_series import *
>>> exp_name = setup(data = data, fh = 12)
>>> remove_metric('MAPE')
name_or_id: str

Display name or ID of the metric.

Returns:

None