How do I write a Latex formula in the legend of a plot using Matplotlib inside a .py file?(如何在 .py 文件中使用 Matplotlib 在绘图的图例中编写 Latex 公式?)
问题描述
我正在用 Python(.py 文件)编写脚本,并且正在使用 Matplotlib 绘制数组.我想在情节中添加一个带有公式的图例,但我无法做到.我以前在 IPython 或终端中做过这个.在这种情况下,写这样的东西:
I am writing a script in Python (.py file) and I am using Matplotlib to plot an array. I want to add a legend with a formula to the plot, but I haven't been able to do it. I have done this before in IPython or the terminal. In this case, writing something like this:
legend(ur'$The_formula$')
完美运行.但是,当我从终端/IPython 调用我的 .py 脚本时,这不起作用.
worked perfectly. However, this doesn't work when I call my .py script from the terminal/IPython.
推荐答案
最简单的方法是在绘制数据时分配标签,例如:
The easiest way is to assign the label when you plot the data, e.g.:
import matplotlib.pyplot as plt
ax = plt.gca() # or any other way to get an axis object
ax.plot(x, y, label=r'$sin (x)$')
ax.legend()
这篇关于如何在 .py 文件中使用 Matplotlib 在绘图的图例中编写 Latex 公式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 .py 文件中使用 Matplotlib 在绘图的图例中编写 Latex 公式?
基础教程推荐
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 求两个直方图的卷积 2022-01-01
- 包装空间模型 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
