openstef 3.4.75__py3-none-any.whl → 3.4.76__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- openstef/postprocessing/postprocessing.py +6 -1
- {openstef-3.4.75.dist-info → openstef-3.4.76.dist-info}/METADATA +1 -1
- {openstef-3.4.75.dist-info → openstef-3.4.76.dist-info}/RECORD +6 -6
- {openstef-3.4.75.dist-info → openstef-3.4.76.dist-info}/WHEEL +0 -0
- {openstef-3.4.75.dist-info → openstef-3.4.76.dist-info}/licenses/LICENSE +0 -0
- {openstef-3.4.75.dist-info → openstef-3.4.76.dist-info}/top_level.txt +0 -0
@@ -255,9 +255,14 @@ def sort_quantiles(
|
|
255
255
|
if len(p_columns) == 0:
|
256
256
|
return forecast
|
257
257
|
|
258
|
-
#
|
258
|
+
# Sort the columns
|
259
259
|
p_columns = np.sort(p_columns)
|
260
260
|
|
261
261
|
forecast.loc[:, p_columns] = forecast[p_columns].apply(sorted, axis=1).to_list()
|
262
262
|
|
263
|
+
# Set the forecast columun equal to the median if available
|
264
|
+
median_col = f"{quantile_col_start}50"
|
265
|
+
if median_col in forecast.columns:
|
266
|
+
forecast["forecast"] = forecast[median_col]
|
267
|
+
|
263
268
|
return forecast
|
@@ -85,7 +85,7 @@ openstef/pipeline/utils.py,sha256=23mB31p19FoGWelLJzxNmqlzGwEr3fCDBEA37V2kpYY,21
|
|
85
85
|
openstef/plotting/__init__.py,sha256=KQjXzyafCt1bE7XDrSeV4TDUIO7MkwN_Br4ASOcNI2g,163
|
86
86
|
openstef/plotting/load_forecast_plotter.py,sha256=GWHVmUB2YosNj7TnSrMnxYAfM2Z1mNg5oRV9A_lJmQY,8129
|
87
87
|
openstef/postprocessing/__init__.py,sha256=bIyGTSA4V5VoOLTwdaiJJAnozmpSzvQooVYlsf8H4eU,163
|
88
|
-
openstef/postprocessing/postprocessing.py,sha256=
|
88
|
+
openstef/postprocessing/postprocessing.py,sha256=lKYsI-ckDy0jUwLPr1AlFRSfoMHMkXvnHuUFwomaJFM,9015
|
89
89
|
openstef/preprocessing/__init__.py,sha256=bIyGTSA4V5VoOLTwdaiJJAnozmpSzvQooVYlsf8H4eU,163
|
90
90
|
openstef/preprocessing/preprocessing.py,sha256=bM_cSSSb2vGTD79RGzUrI6KoELbzlCyJwc7jqQGNEsE,1454
|
91
91
|
openstef/tasks/__init__.py,sha256=bIyGTSA4V5VoOLTwdaiJJAnozmpSzvQooVYlsf8H4eU,163
|
@@ -104,8 +104,8 @@ openstef/tasks/utils/predictionjobloop.py,sha256=Ysy3zF5lzPMz_asYDKeF5m0qgVT3tCt
|
|
104
104
|
openstef/tasks/utils/taskcontext.py,sha256=O-LZ_wHEl5vbT8oB7EYtOeMkvk6EqCnI1-KiyER7Eu4,5407
|
105
105
|
openstef/validation/__init__.py,sha256=bIyGTSA4V5VoOLTwdaiJJAnozmpSzvQooVYlsf8H4eU,163
|
106
106
|
openstef/validation/validation.py,sha256=r6UqkdH5TMjsGfn8Ta07K1jkqmrVmwcPGfyQvMmZyO4,11459
|
107
|
-
openstef-3.4.
|
108
|
-
openstef-3.4.
|
109
|
-
openstef-3.4.
|
110
|
-
openstef-3.4.
|
111
|
-
openstef-3.4.
|
107
|
+
openstef-3.4.76.dist-info/licenses/LICENSE,sha256=7Pm2fWFFHHUG5lDHed1vl5CjzxObIXQglnYsEdtjo_k,14907
|
108
|
+
openstef-3.4.76.dist-info/METADATA,sha256=OEFP-Jw1hquEQh71h5_uLi89nRCQKoHYOfJvJMWjFDo,8834
|
109
|
+
openstef-3.4.76.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
110
|
+
openstef-3.4.76.dist-info/top_level.txt,sha256=kD0H4PqrQoncZ957FvqwfBxa89kTrun4Z_RAPs_HhLs,9
|
111
|
+
openstef-3.4.76.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|