Skip to content

Commit

Permalink
Merge pull request #15 from matsim-vsp/0.2.1_flexible-delimiter
Browse files Browse the repository at this point in the history
make csv file rading more flexible
  • Loading branch information
billyc authored Jun 5, 2024
2 parents 15f94f3 + 019f4cf commit 4c16429
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions R/output_persons.R
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ readPersonsTable <- function(input_path = ".", n_max = Inf) {
}

persons_output_table <- read_delim(persons_file,
delim = ";",
locale = locale(decimal_mark = "."),
n_max = n_max,
col_types = cols(
Expand Down Expand Up @@ -134,7 +133,6 @@ read_output_persons <- function(input_path = ".", n_max = Inf) {
}

persons_output_table <- read_delim(persons_file,
delim = ";",
locale = locale(decimal_mark = "."),
n_max = n_max,
col_types = cols(
Expand Down
1 change: 0 additions & 1 deletion R/output_trips.R
Original file line number Diff line number Diff line change
Expand Up @@ -2425,7 +2425,6 @@ read_output_trips <- function(input_path = ".", n_max = Inf) {
}

trips_output_table <- read_delim(trips_file,
delim = ";",
locale = locale(decimal_mark = "."),
n_max = n_max,
col_types = cols(
Expand Down

0 comments on commit 4c16429

Please sign in to comment.