From 49ea528ebae43de8d58054d111984daf2300534c Mon Sep 17 00:00:00 2001 From: Joris Goosen Date: Wed, 19 Jun 2024 17:20:35 +0200 Subject: [PATCH] preliminary work for https://github.com/jasp-stats/INTERNAL-jasp/issues/2583 --- R/common.R | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/R/common.R b/R/common.R index 2d60ae7..c6d7655 100644 --- a/R/common.R +++ b/R/common.R @@ -105,11 +105,7 @@ runJaspResults <- function(name, title, dataKey, options, stateKey, functionCall analysis <- eval(parse(text=functionCall)) - dataset <- NULL - if (! is.null(dataKey)) { - cols <- .getDataSetCols(dataKey, options) - dataset <- do.call(.readDataSetToEnd, cols) - } + dataset <- .readDataSetRequestedNative() # ensure an analysis always starts with a clean hashtable of computed jasp Objects emptyRecomputed()