I want to plot 1:3 using points but 3:-1:1 using lines.
1:3
3:-1:1
How do I achieve this with Plots.jl?
Plot one thing first and then use a new plot command with a bang to modify the previous plot.
scatter(1:3) plot!(3:-1:1)