Python 如何使用Plotly在次级Y轴上绘图

Python 如何使用Plotly在次级Y轴上绘图

Plotly是一个开源的、交互式的、基于浏览器的Python图表库。Python用户可以使用Plotly生成不同类型的图表,包括科学图表、3D图形、统计图表、金融图表等。

在本教程中,我们将展示如何使用Plotly在次级Y轴上绘制数据。我们将使用 plotly.graph_objects 模块生成图形。它包含了许多自定义图表并将其呈现为HTML格式的方法。我们将使用 add_trace() 方法绘制两个条形图,然后使用 update_layout() 方法用 dict 参数设置属性。

按照下面的步骤绘制次级Y轴上的图表。

步骤1

导入 plotly.graphs_objs 模块并用go作为别名。

import plotly.graphs_objs as go

步骤2

使用 Figure() 方法创建一个图形。

fig = go.Figure()

步骤3

使用 add_trace() 方法创建两个柱状图。

fig.add_trace(go.Bar(
   x=[5,6,7],
   y=[1,2,3],
   name="yaxis1",
   yaxis='y1'
))

fig.add_trace(go.Bar(
   x=[1,2,3],
   y=[1,2,3],
   name="yaxis2",
   yaxis="y2"
))

步骤4

为第一个和第二个Y轴创建轴对象。

fig.update_layout(
   xaxis=dict(domain=[0.15, 0.15]),

   # create first Y-axis
   yaxis=dict(
      title="yaxis1 title",
      titlefont=dict(color="blue"),
      tickfont=dict(color="red")
   ),

   # create second Y-axis
   yaxis2=dict(
      title="yaxis2 title",
      overlaying="y",
      side="right", position=0.15)
)

步骤5

使用 update_layout() 方法来设置布局和指定标题文本。

fig.update_layout(title_text="secondary y-axis")

示例

以下是在第二个Y轴上绘制的完整代码 −

import plotly.graph_objects as go
fig = go.Figure()
fig.add_trace(go.Bar(
   x=[5, 6, 7], y=[1, 2, 3],
   name="yaxis1", yaxis='y1'))
   fig.add_trace(go.Bar(
   x=[1, 2, 3], y=[1, 2, 3],
   name="yaxis2", yaxis="y2"))

# Create axis objects
fig.update_layout(
   xaxis=dict(domain=[0.15, 0.15]),

# create first y axis
yaxis=dict(
   title="yaxis1 title",
   titlefont=dict(color="blue"),
   tickfont=dict(color="red")
),

# Create second y axis
yaxis2=dict(
   title="yaxis2 title",
   overlaying="y",
   side="right",
   position=0.15)
)

fig.update_layout(title_text="Secondary Y-axis",
width=716, height=400)
fig.show()

输出

它将在浏览器上显示以下输出 –

Python 如何使用Plotly在次级Y轴上绘图

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程