Trying to plot a line where each point has its own markershape, I tried:
using Plots
xs = [1, 2, 3]
ys = [2, 3, 2.4]
markers = [:x, :hexagon, :none]
plot(xs, ys, markershape=markers)
But that gives the following, which only has xs as markers:
I also tried 1x3 array but no luck.