Thread for JR Best Practices attendees to practice reprexes. No need to answer them!

This is a thread for Jumping Rivers "Best Practices with R" attendees to practice preparing and sharing code questions using minimal reproducible examples (reprexes). There is no need to respond to these questions, as we're just practicing.

I'm trying to create a plot with yellow points, but the graph has red points.

library("ggplot2")
data(penguins, package = "palmerpenguins")
ggplot(penguins, aes(bill_length_mm, bill_depth_mm)) +
  geom_point(aes(colour = "yellow"))
#> Warning: Removed 2 rows containing missing values (geom_point).

Created on 2021-06-25 by the reprex package (v2.0.0)

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.