Thanks for the great work on Plotly express!
I think it would be nice to have a concise express function to plot a line chart with markers shown. This can be done now with
fig=express.line(...)
fig.update_traces(mode='markers+lines')
but that seems quite verbose for a fairly common kind of figure. What about, for example, adding a keyword argument to express.line to specify marker properties?
cf matplotlib, where you can conveniently do this with something like plt.plot(x, y, fmt='.-') to get line plot with markers.
Thanks for the great work on Plotly express!
I think it would be nice to have a concise
expressfunction to plot a line chart with markers shown. This can be done now withbut that seems quite verbose for a fairly common kind of figure. What about, for example, adding a keyword argument to
express.lineto specify marker properties?cf matplotlib, where you can conveniently do this with something like
plt.plot(x, y, fmt='.-')to get line plot with markers.