I'm happy with the way I've written the summary and it works. Sort of. I need to see min, max, and mean of ride lengths originally formatted as hh:m:ss, grouped by member type (member_casual) in my set. Group by is working just fine, the rest not so much. Ride_length in data set is hh:mm:ss format.
group_by(member_casual) %>%
summarise(min_ride_length = min(ride_length),
max_ride_length = max(ride_length),
mean_ride_length = mean(ride_length))
I tumbled around stack and other places on google trying different hms functions in different areas within my code chunks and got errors every time. The goal is to get the output in hh:mm:ss format with positive numbers somehow.