2

是否可以通过 matplotlib 的 figure.text() 命令使用(新样式)python 字符串格式?

我尝试将 2 列数据创建为文本(它们应该整齐地对齐)

import matplotlib.pyplot as plt

txt = '{0:50} {1:.4e}'.format('Row1:', 0.1542457) + '\n' + \
      '{0:50} {1:.4e}'.format('Row2:', 0.00145744) + '\n' + \
  '{0:50} {1:.4e}'.format('Long name for this row):', 0.00146655744) + '\n' + \
  '{0:50} {1}'.format('medium size name):', 'some text')

fig = plt.figure()
ax1 = fig.add_axes((0.1, 0.3, 0.8, 0.65))
ax1.plot(range(10),range(10))
fig.text(0.17, 0.07,txt)
plt.show()

当我将 txt 变量打印到屏幕上时看起来不错:

对齐的文本

但在我的情节中没有对齐

未对齐的文本

4

2 回答 2

6

您需要使用等宽字体以保持格式化:

import matplotlib.pyplot as plt

txt = '{0:50} {1:.4e}\n'.format('Row1:', 0.1542457) + \
      '{0:50} {1:.4e}\n'.format('Row2:', 0.00145744) + \
      '{0:50} {1:.4e}\n'.format('Long name for this row):', 0.00146655744) + \
      '{0:50} {1}'.format('medium size name):', 'some text')

fig = plt.figure()
ax1 = fig.add_axes((0.1, 0.3, 0.8, 0.65))
ax1.plot(range(10),range(10))
fig.text(0.17, 0.07, txt, family='monospace')
plt.show()

在此处输入图像描述

于 2013-10-09T01:17:18.310 回答
3

制作两个字符串 txtL 和 txtR 并使用multialignment kwarg ,但可能很难以编程方式找出 txtR 的 y 位置。

import matplotlib.pyplot as plt

txt = '{0:50} {1:.4e}'.format('Row1:', 0.1542457) + '\n' + \
      '{0:50} {1:.4e}'.format('Row2:', 0.00145744) + '\n' + \
  '{0:50} {1:.4e}'.format('Long name for this row):', 0.00146655744) + '\n' + \
  '{0:50} {1}'.format('medium size name):', 'some text')

txtL = 'Row1:\nRow2:\nLong name for this row):\nmedium size name):'
txtR = '0.1542457\n0.00145744\n0.00146655744\nsome text'

fig = plt.figure()
ax1 = fig.add_axes((0.1, 0.3, 0.8, 0.65))
ax1.plot(range(10),range(10))
fig.text(0.17, 0.07,txtL, multialignment = 'left')
fig.text(0.7, 0.07,txtR, multialignment = 'right')

plt.show()
plt.close()

在此处输入图像描述

于 2013-10-09T01:26:46.470 回答