Skip to content

Commit

Permalink
read_delim can automatically determine the delimiter, no need to pre-…
Browse files Browse the repository at this point in the history
…define it
  • Loading branch information
simei94 committed Mar 27, 2024
1 parent 15f94f3 commit 019f4cf
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 019f4cf

Please sign in to comment.