Browse Source

be more specific which temporary Rdata to exclude

Lennart Wittkuhn 3 years ago
parent
commit
bfcecf2d1f
2 changed files with 3 additions and 2 deletions
  1. 2 1
      .gitignore
  2. 1 1
      code/highspeed-analysis-resting.Rmd

+ 2 - 1
.gitignore

@@ -6,4 +6,5 @@ code/libs
 code/*.html
 figures
 code/*_files
-data/tmp
+data/tmp/dt_odd_*
+data/tmp/dt_periods.Rdata

+ 1 - 1
code/highspeed-analysis-resting.Rmd

@@ -391,7 +391,7 @@ dt_pred_conc_slope = rbind(dt_pred_conc_slope_seq, dt_pred_conc_slope_rest) %>%
 We save the regression slope data during manual execution, save it to the repository and reload it for all following analyses: 
 
 ```{r, echo=TRUE, eval=FALSE}
-save(dt_pred_conc_slope, file = file.path(path_root, 'data', "tmp", "dt_pred_conc_slope.Rdata"))
+save(dt_pred_conc_slope, file = file.path(path_root, "data", "tmp", "dt_pred_conc_slope.Rdata"))
 ```
 
 ```{r, echo=TRUE}