col_time(format = "") error

In the original CSV file, there is a column "ride_lenght" , which is "TIME".
When importing CSV file using read_csv(), it is shown type of column "ride_lenght" as col_character(). Its type should be "col_time(format = "")"
Please advice.

── Column specification ─────────────────────────────────────────
cols(
ride_id = col_character(),
rideable_type = col_character(),
member_casual = col_character(),
ride_lenght = col_character(),
day_of_week = col_double()
)

Just specify the col_type:
Read a delimited file (including csv & tsv) into a tibble — read_delim • readr (tidyverse.org)

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.