what is wrong my code that does not change the filling color?
cars %>%
ggplot() +
geom_point(aes(x = speed, y = dist,
color= I(ifelse(dist >50, 'red', 'black')),
fill= I(ifelse(dist >50, 'pink', 'gray'))
)
)