From de07ff88d7ea4f534f23518b67371fff0f81ab87 Mon Sep 17 00:00:00 2001 From: Millian Poquet <millian.poquet@irit.fr> Date: Thu, 9 May 2024 17:21:45 +0200 Subject: [PATCH] notebook: set seed to 1 --- notebooks/m100-power-trace-analysis.Rmd | 1 + notebooks/simulation-output-analysis.Rmd | 1 + 2 files changed, 2 insertions(+) diff --git a/notebooks/m100-power-trace-analysis.Rmd b/notebooks/m100-power-trace-analysis.Rmd index e85b220..21a8b93 100644 --- a/notebooks/m100-power-trace-analysis.Rmd +++ b/notebooks/m100-power-trace-analysis.Rmd @@ -19,6 +19,7 @@ The goal of this notebook is to model how the nodes behave in terms of power con # Read the aggregated data ```{r, echo = TRUE} +set.seed(1) suppressMessages(library(tidyverse)) suppressMessages(library(viridis)) library(knitr) diff --git a/notebooks/simulation-output-analysis.Rmd b/notebooks/simulation-output-analysis.Rmd index bdc2cef..1a81db2 100644 --- a/notebooks/simulation-output-analysis.Rmd +++ b/notebooks/simulation-output-analysis.Rmd @@ -26,6 +26,7 @@ The goal of this notebook is to determine the impact of the job power predictor ## Code to read and prepare data ```{r, echo = TRUE} +set.seed(1) suppressMessages(library(tidyverse)) suppressMessages(library(viridis)) library(knitr) -- GitLab