1

我是 matplotlib 的新手。我在 matplotlib 中的图表没有完全显示最后一个标记。我尝试增加图形大小,但没有任何变化。我需要扩展图形,使其显示最后一个标记,并将线延伸到标记之外。这是我的代码:

    import numpy as np
    import matplotlib.pyplot as plt

    x = np.array([1,2,5,10,15,20])
    y = np.array([0.049,0.080,0.123,0.166,0.209,0.335])

    A = np.vstack([x, np.ones(len(x))]).T
    m, c = np.linalg.lstsq(A, y)[0]

    x = np.array([0,1,2,5,10,15,20])
    y = np.array([c,0.049,0.080,0.123,0.166,0.209,0.335])

    plt.plot(x, y, 'r*', label='Original data', markersize=7)
    plt.plot(x, m*x + c, 'b', label='Fitted line')
    fig = plt.figure(1)
    fig.set_size_inches(9,8)
    fig.suptitle('THE GRAPH OF ABSORBANCE AGAINST CONCENTRATION',fontsize=20)
    plt.xlabel('CONCENTRATION',fontsize=15)
    plt.ylabel('ABSORBANCE',fontsize=15)
    plt.grid()
    fig.savefig('graph.jpg')

非常感谢您的帮助。

4

1 回答 1

1

(主要复制自How to autoscale y axis in matplotlib?

你想要margins 医生

前任

ax.margins(y=.1, x=.1)

另请参阅当图在图形边缘运行时添加边距

matplotlib1.3.x 将包含这些rcParamaxes.xmarginaxes.ymargin设置一个非零边距(它的代码已经在 master 中)。

于 2013-04-21T22:19:23.393 回答