Plotly绘制树折线图(line)

文章目录

  • 一、单个折线图
  • 二、多个折线图
  • 三、分组多折线图
  • 四、参数及美化


一、单个折线图

import plotly.express as px

df = px.data.gapminder().query("country=='Canada'")
fig = px.line(df, x="year", y="lifeExp", title='Life expectancy in Canada',
              text='lifeExp', # 数据点显示值
              line_shape='linear', # 共有6种插值方式:'linear''spline''hv''vh''hvh'和'vhv。
             )
fig.update_traces(
    texttemplate='%{text:.2f}', # 数据点显示值的格式
    textposition='top center', # 数据点显示的位置:'top left', 'top center', 'top right', 'middle left','middle center', 'middle right', 'bottom left', 'bottom center', 'bottom right'
) 
fig.show()

Plotly绘制树折线图(line)_第1张图片

二、多个折线图

# 多折线图
import plotly.express as px

# 比如绘制大洋洲(有澳大利亚和新西兰)
df = px.data.gapminder().query("continent=='Oceania'")
fig = px.line(df, x="year", y="lifeExp", 
              color='country', # 按照国家区分
             )
fig.show()

Plotly绘制树折线图(line)_第2张图片

三、分组多折线图

Plotly绘制树折线图(line)_第3张图片

四、参数及美化

敬请期待

你可能感兴趣的:(Plotly,python,数据可视化)