plt.plot 函数 在label处输出文本+变量
时间: 2024-09-06 20:04:13 浏览: 95
Python Matplotlib库plot函数画图 标签、颜色、线型、标题等控制
`plt.plot` 函数是 Python 中 matplotlib 库的一个函数,用于绘制图形。如果你想在标签(label)处输出文本和变量,你可以使用字符串格式化的方法将变量嵌入到文本中。这里有几个常用的方法可以实现这一点:
1. 使用 `%` 操作符进行字符串格式化:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3]
y = [5, 7, 4]
# 假设有一个变量是数字
variable = 10
# 使用 % 操作符进行格式化
plt.plot(x, y, label="y 的值是 %d" % variable)
plt.legend()
plt.show()
```
2. 使用 `str.format()` 方法:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3]
y = [5, 7, 4]
# 假设有一个变量是数字
variable = 10
# 使用 str.format() 方法进行格式化
plt.plot(x, y, label="y 的值是 {}".format(variable))
plt.legend()
plt.show()
```
3. 使用 f-string(Python 3.6+):
```python
import matplotlib.pyplot as plt
x = [1, 2, 3]
y = [5, 7, 4]
# 假设有一个变量是数字
variable = 10
# 使用 f-string 进行格式化
plt.plot(x, y, label=f"y 的值是 {variable}")
plt.legend()
plt.show()
```
以上三种方法都可以将变量和文本结合,然后作为标签添加到 `plt.plot` 函数的 `label` 参数中。当然,这些方法也适用于其他需要文本格式化的场景。
阅读全文