def test_plot_scatter1():
filename = abspath(join(testdir, 'plot_scatter1.png'))
if isfile(filename):
os.remove(filename)
x = pd.DataFrame({'x1' : pd.Series([1., 2., 3.], index=['a', 'b', 'c'])})
y = pd.DataFrame({'y1' : pd.Series([1., 2., 3.], index=['a', 'b', 'c'])})
plt.figure()
pecos.graphics.plot_scatter(x,y,xaxis_min=0.5, xaxis_max=6.5, yaxis_min=0.5, yaxis_max=3.5)
plt.savefig(filename, format='png')
plt.close()
assert_true(isfile(filename))
评论列表
文章目录