如何在 matplotlib 中使用 unicode 符号?


为了在 matplotlib 中使用 unicode 符号,我们可以采取以下步骤。

步骤

  • 设置图形大小并调整子图之间和周围的填充。

  • 使用带有 unicode 符号的 text() 方法向图像添加文本。此处我们使用了 Unicode 字符 (Δ),其字符代码为 (0394)。

  • 要显示图形,请使用 Show() 方法。

示例

import matplotlib.pyplot as plt

# Set the figure size
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True

# Unicode symbol
plt.text(0.5, 0.5, s=u"\u0394", fontsize=50)

# Display the plot
plt.show()

输出

它将产生以下输出 −


现在,让我们使用另一个 Unicode 字符 (\u2734)。

它将产生以下输出 −

更新于: 09-Oct-2021

2K+ 浏览量

开启你的职业生涯

完成课程获得认证

开始
广告