My desired outcome is a graph that looks like this
ax.plot(df.x, df.y, 'b.-')
where a line is generated with a dot at every location there is a data point. But I also want specific colors like "lightsteelblue".
When I try plotting
ax.plot(df.x, df.y, color='lightsteelblue', ls='.-')
a value error comes up that '.-' is not supported with "ls". Any ideas on how to get around this?
Thanks for your time, -Bojan