Hello - I'm combining just two months of data to get a feel for using the readr(), bind_rows(), and aes geom_point functions. Got as far as binding rows! But I am repeatedly getting an error message saying the ggplot2 function isn't recognized.
Domain: Posit Cloud
Coding and error message:
library(ggplot2)
ggplot2(combined_df, aes(x = ride_length, y = day_of_week)) +
- geom_point() +
- labs(x = "Ride Duration", y = "Day of the Week", title = "What Days Have the Longest Rides?")
Error in ggplot2(combined_df, aes(x = ride_length, y = day_of_week)) :
could not find function "ggplot2"
-->