dataframe中有很多维度的参数。用dataframe.plot的时候。我就只要一个维度的。(x轴默认的就是index)

 #注意下面的绘制图像的简单的方法,可以直接dataframe类型的.plot
    results_df.plot(y=['Accuracy (%)'], kind='bar', ylim=[50, 100], ax=ax1, title='Accuracy(%)', legend=False)

    ax2 = plt.subplot(1, 2, 2)

#(x轴默认的就是index)可以指定x轴比如 x=列名1
    results_df.plot(y=['Time (s)'], kind='bar', ax=ax2, title='Time (s)', legend=False)
    plt.tight_layout()
    plt.savefig(os.path.join(config.output_path, './pred_results.png'))
    plt.show()

 

你可能感兴趣的:(dataframe中有很多维度的参数。用dataframe.plot的时候。我就只要一个维度的。(x轴默认的就是index))