plotly-python

How to add points to line chart using plotly express?

痞子三分冷 提交于 2020-11-29 04:47:07
问题 plotly.express is very convenient to produce nice interactive plots. The code below generates a line chart colored by country. Now what I need is to add points to the plot. Does anyone know how I can add points to the line chart? import plotly.express as px gapminder = px.data.gapminder().query("continent=='Oceania'") fig = px.line(gapminder, x="year", y="lifeExp", color='country') fig.show() 回答1: Use fig.update_traces(mode='markers+lines') Plot: Code: import plotly.express as px gapminder =

How to add points to line chart using plotly express?

筅森魡賤 提交于 2020-11-29 04:46:27
问题 plotly.express is very convenient to produce nice interactive plots. The code below generates a line chart colored by country. Now what I need is to add points to the plot. Does anyone know how I can add points to the line chart? import plotly.express as px gapminder = px.data.gapminder().query("continent=='Oceania'") fig = px.line(gapminder, x="year", y="lifeExp", color='country') fig.show() 回答1: Use fig.update_traces(mode='markers+lines') Plot: Code: import plotly.express as px gapminder =