I created code in my R, but the problem is that my code is not working, I adjusted every details that ight the problem but still the same outcome,
'''
all_trips <- structure(list(ride_id = c("21742460", " 21761461", "21749409"),
started_at = c("1/1/2019 0:24"," 1/4/2019 17:24", "1/3/2019 6:36" ),
ended_at = c("1/1/2019 0:47, " 1/4/2019 17:35", "1/3/2019 6:40" ),
rideable_type = c("5777", "5881", "3545" ),
start_station_id = c(268, 317, 164 ),
start_station_name = c("Lake Shore Dr & North Blvd", "Wood St & Taylor St", "Franklin St & Lake St" ),
end_station_id = c(319, 208, 52 ),
end_station_name = c("Greenview Ave & Diversey Pkwy", "Ashland Ave & 21st St", "Michigan Ave & Lake St" ),
member_casual = c("casual", "member" , "member" ),
date = structure(c(-719143, -719143, -719143 ), class = "Date"),
month = c("01","01", "01"),
day = c("20", "20", "20 ),
year = c("1", "1", "1" ),
day_of_week = c("Tuesday", "Friday","Thursday"),
row.names = c(NA,-3L),
class = c("tbl_df", "tbl", "data.frame"))
'''
So this is the code I wrote but there is some error like this
'''
class = c("tbl_df", "tbl", "data.frame"))
Error: unexpected ')' in "class = c("tbl_df", "tbl", "data.frame"))"
'''
please help me