From 38978b2bf5cacae5798135f404c0c400bf670c14 Mon Sep 17 00:00:00 2001 From: majpark21 Date: Tue, 11 Jun 2019 16:36:42 +0200 Subject: [PATCH] renamed misleading log axis in PSD --- modules/trajPsdPlot.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/trajPsdPlot.R b/modules/trajPsdPlot.R index 554bfb5..ada6b59 100644 --- a/modules/trajPsdPlot.R +++ b/modules/trajPsdPlot.R @@ -205,7 +205,7 @@ modPSDPlot = function(input, output, session, in.font.strip = PLOTFONTFACETSTRIP, in.font.legend = PLOTFONTLEGEND) if("x" %in% input$chBGPSDlogaxis){ - p.out <- p.out + scale_x_continuous(trans = input$inPSDlogtype) + xlab(paste0(input$inPSDlogtype, "(", x_arg_str, ")")) + p.out <- p.out + scale_x_continuous(trans = input$inPSDlogtype) } if("y" %in% input$chBGPSDlogaxis){ p.out <- p.out + scale_y_continuous(trans = input$inPSDlogtype) -- GitLab