Skip to content

Commit

Permalink
🩹 fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
TanyaS08 committed Dec 18, 2024
1 parent 7ebb8fb commit bcaf04b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/figures.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ setwd(here("code"))

#### Structure ####

df <- list.files(path = "../data/processed/", pattern = ".csv", full.names = TRUE) %>%
df <- list.files(path = "../data/processed/topology/", pattern = ".csv", full.names = TRUE) %>%
lapply(read_csv) %>%
bind_rows %>%
mutate(across(matches("S[[:digit:]]"), log)) %>%
Expand Down
2 changes: 1 addition & 1 deletion notebooks/code/figures_pfim.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ setwd(here("notebooks/code"))

#### Structure ####

df <- list.files(path = "../../data/processed/", pattern = ".csv", full.names = TRUE) %>%
df <- list.files(path = "../../data/processed/topology/", pattern = ".csv", full.names = TRUE) %>%
lapply(read_csv) %>%
bind_rows %>%
mutate(across(matches("S[[:digit:]]"), log)) %>%
Expand Down

0 comments on commit bcaf04b

Please sign in to comment.