import numpy as np from scipy.stats import beta import matplotlib.pyplot as plt # ab_pairs = [(2.81,21.92), (14.19,123.57)] ab_pairs = [(1.369012558,56.67609926,'24_female'), (6.088662555,346.8019442,'2530_female')] #x = np.linspace(0, 1, 1002)[1:-1] x = np.linspace(0, 1, 10000)[1:-1] for a, b, c in ab_pairs: print(a, b, c) dist = beta(a, b) y = dist.pdf(x) plt.plot(x, y, label=r'$\alpha=%.1f,\ \beta=%.1f$'+ u'grp = %s' % (a, b, c)) # 设置标题 plt.title(u'313 Beta Distribution') #设置 x,y 轴取值范围 plt.xlim(0, 1) plt.ylim(0, 100) plt.legend() plt.savefig("./beta.svg", format="svg") 报错TypeError: not all arguments converted during string formatting
时间: 2023-10-04 07:13:55 浏览: 81
python 3.74 运行import numpy as np 报错lib\site-packages\numpy\__init__.py
这个错误是由于在保存图形时的字符串格式化部分出现了问题。你可以尝试使用 `.format()` 方法来格式化字符串,以解决这个问题。
以下是修正后的代码示例:
```python
import numpy as np
from scipy.stats import beta
import matplotlib.pyplot as plt
ab_pairs = [(1.369012558, 56.67609926, '24_female'), (6.088662555, 346.8019442, '2530_female')]
x = np.linspace(0, 1, 10000)[1:-1]
for a, b, c in ab_pairs:
print(a, b, c)
dist = beta(a, b)
y = dist.pdf(x)
plt.plot(x, y, label=r'$\alpha={:.1f},\ \beta={:.1f}$ grp = {}'.format(a, b, c))
plt.title('313 Beta Distribution')
plt.xlim(0, 1)
plt.ylim(0, 100)
plt.legend()
plt.savefig("./beta.svg", format="svg")
```
这样应该就可以成功保存图形了。请注意,我还修复了标题的格式和注释中的拼写错误。你可以根据需要进行调整。
阅读全文