From 3f546497b039a5bf900656389168ded98747e4f8 Mon Sep 17 00:00:00 2001 From: sosorior Date: Wed, 30 Oct 2024 12:31:33 +0100 Subject: [PATCH] fix price year in tau report --- R/reportElectricityPrices.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/reportElectricityPrices.R b/R/reportElectricityPrices.R index 65eeed0..564e637 100644 --- a/R/reportElectricityPrices.R +++ b/R/reportElectricityPrices.R @@ -429,7 +429,7 @@ reportElectricityPrices <- function(gdx, reporting_tau = FALSE) { rename_tau <- function(name, data) { .tau_nb <- getNames(data) - .nm <- paste0(name, "|", .tau_nb, " (Eur2015/MWh)") + .nm <- paste0(name, "|", .tau_nb, " (Eur2023/MWh)") out <- setNames(data, .nm) return(out) }