From 7cb354d2e9f42f2bb95fa1dcbb910fede60ca39d Mon Sep 17 00:00:00 2001 From: sisyphus-jasp Date: Tue, 24 Feb 2026 16:24:04 +0100 Subject: [PATCH] [jaspLearnStats] Fix issue #3107 (second issue - plot sizing): Increase the default... --- R/LSeffectSizes.R | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/R/LSeffectSizes.R b/R/LSeffectSizes.R index 66b11bb..16f553f 100644 --- a/R/LSeffectSizes.R +++ b/R/LSeffectSizes.R @@ -1032,7 +1032,7 @@ switchOptions <- function(options) { if (options[["plotCombine"]] && options[["simulateData"]]){ - phiCombinedPlot <- createJaspPlot(title = gettext("Population and simulation distribution"), height = 500, aspectRatio = 1) + phiCombinedPlot <- createJaspPlot(title = gettext("Population and simulation distribution"), width = 650, height = 500, aspectRatio = 1) phiCombinedPlot$position <- 1 phiPlot[["phiCombinedPlot"]] <- phiCombinedPlot @@ -1045,7 +1045,7 @@ switchOptions <- function(options) { } else { - phiPopulationPlot <- createJaspPlot(title = gettext("Population distribution"), height = 500, aspectRatio = 1) + phiPopulationPlot <- createJaspPlot(title = gettext("Population distribution"), width = 650, height = 500, aspectRatio = 1) phiPopulationPlot$position <- 1 phiPlot[["phiPopulationPlot"]] <- phiPopulationPlot @@ -1057,7 +1057,7 @@ switchOptions <- function(options) { if (options[["simulateData"]]) { - phiSimulationPlot <- createJaspPlot(title = gettext("Simulation distribution"), height = 500, aspectRatio = 1) + phiSimulationPlot <- createJaspPlot(title = gettext("Simulation distribution"), width = 650, height = 500, aspectRatio = 1) phiSimulationPlot$position <- 2 phiPlot[["phiSimulationPlot"]] <- phiSimulationPlot