How can I include a simple point on my graph using Plots.jl?

How can I include a simple point on my graph using Plots.jl?

Note that the original poster on Slack cannot see your response here on Discourse. Consider transcribing the appropriate answer back to Slack, or pinging the poster here on Discourse so they can follow this thread.
(Original message :slack:) (More Info)

using Plots; gr()
plot(sin, label="sin(x)")
scatter!([2],[0], label="(2,0)")
1 Like