I try to save my plots as pdf files for a publication.
Before I used the png file format and everything worked as expected, as seen in the first figure. But when I use the same code and save my plots as a pdf or svg, for example the markerstrokewidth=0
is ignored as can be seen in the second figure. What can I do to fix this?
Thanks in advance!
using Plots
plt = plot(rand(10), seriestype=:scatter, markerstrokewidth=0)
savefig(plt, "my_plot.pdf")
savefig(plt, "my_plot.png")