From 2a67cecf0a48475fdf3b94ac829ecb7b636ff850 Mon Sep 17 00:00:00 2001 From: Jens Sauer Date: Tue, 17 Nov 2020 18:28:39 +0100 Subject: [PATCH] Use data from repository Starting with this commit, all calculation will base on data/data.csv. --- utils.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.R b/utils.R index e047f9b..33568de 100644 --- a/utils.R +++ b/utils.R @@ -106,7 +106,7 @@ sma_init <- function() { # Use superassignment operator '<<-' to make # secmal and sma_initialized with global scope. # - secmal <<- sma_load_data("current.csv") + secmal <<- sma_load_data("data/data.csv") sma_initialized <<- TRUE } }