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 公式?
基础教程推荐
- 在 Python 中将货币解析为数字 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
