I have a data frame that looks like this:
Salary Year
15 1990
16 1991
15 1992
20 1993
17 1994
19 1995
Which I plot using the ggplot.
Dataframe %>%
ggplot(aes(Year, Salary)) +
geom_line() +
geom_point()
Which results in this graph:
What I want to do is to mark the point who is at salary 20 in a black circle (like it is right now) while the rest of the points are white circles with a black ring. How do I do that?