Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
tschlenther committed Sep 11, 2024
1 parent d87d926 commit 55d68b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/R/drtAnalysis/plotRunSummaries.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ library(tidyr)

mainDir <- "E:/matsim-kelheim/v3.1.1/output-KEXI-2.45-AV--0.0/"

transposed_result <- read.csv(paste(mainDir, "results-deutsch.csv", sep=""), check.names = FALSE, sep =";")
transposed_result <- read.csv(paste(mainDir, "results-deutsch.csv", sep=""), check.names = FALSE, sep =",")
#names(transposed_result) <- make.names(names(transposed_result), unique = TRUE, allow_ = FALSE)

# Betriebszeiten umschreiben
Expand Down
2 changes: 1 addition & 1 deletion src/main/R/drtAnalysis/readValuesFromRunSummaries.R
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ read_stats <- function(folder_path, file_name) {
csv_path <- file.path(folder_path, "analysis/drt-drt-av", file_name)

if (file.exists(csv_path)) {
df <- read_csv(csv_path)
df <- read_csv(csv_path, show_col_types = FALSE)
mean_values <- df %>% select(parameter, mean)
return(mean_values)
} else {
Expand Down

0 comments on commit 55d68b8

Please sign in to comment.