Zurück zu den Modellen
Dataset (Forecasting)

Solar

Load the GB National Solar Estimates dataset for time series forecasting.

This class wraps the Sheffield Solar PV_Live API to extract national solar data for the GB electricity network. Note that these are estimates of the true solar generation, as the true values are “behind the meter” and unknown.

Schnellstart

python
from sktime.datasets.forecasting.solar import Solar

estimator = Solar(start='2021-05-01', end='2021-09-01', normalise=True, return_full_df=False, api_version='v4')

Parameter(5)

startstring, default=”2021-05-01”
The start date of the time series in “YYYY-MM-DD” format.
endstring, default=”2021-09-01”
The end date of the time series in “YYYY-MM-DD” format.
normaliseboolean, default=True
Normalise the returned time series by installed capacity.
return_full_dfboolean, default=False
Return a pd.DataFrame with power, capacity, and normalised estimates.
api_versionstring or None, default=”v4”
API version to call. If None, a stored sample of the data is loaded.

Beispiele

>>> from sktime.datasets.forecasting import Solar
>>> y = Solar (). load ("y")

Referenzen