From 49dc03d23d18a484865ead1878433f3c42b6c538 Mon Sep 17 00:00:00 2001
From: Felix Kleinert <f.kleinert@fz-juelich.de>
Date: Mon, 15 Aug 2022 10:24:39 +0200
Subject: [PATCH] transpose crps station report table

---
 mlair/run_modules/post_processing.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/mlair/run_modules/post_processing.py b/mlair/run_modules/post_processing.py
index cb3f9386..95120868 100644
--- a/mlair/run_modules/post_processing.py
+++ b/mlair/run_modules/post_processing.py
@@ -271,6 +271,7 @@ class PostProcessing(RunEnvironment):
     def store_crps_reports(df, report_path, subset, station=False):
         if station is True:
             file_name = f"crps_stations_{subset}.%s"
+            df = df.transpose()
         else:
             file_name = f"crps_summary_{subset}.%s"
         column_format = tables.create_column_format_for_tex(df)
-- 
GitLab