我目前正在使用sagemath托管的在线工作簿制作一些图表。
这是我尝试生成图表的一些代码示例:
myplot = list_plot(zip(range(20), range(20)), color='red')
myplot2 = list_plot(zip(range(20), [i*2 for i in range(20)]), color='blue')
combined = myplot + myplot2
combined.show()
这是非常基本的 - 它基本上是两个并排在一起的散点图。
有没有办法轻松添加轴标签,图例和标题?
我设法破解了一个让我添加轴标签的解决方案,但它看起来非常丑陋和愚蠢。
from matplotlib.backends.backend_agg import FigureCanvasAgg
def make_graph(plot, labels, figsize=6):
mplot = plot.matplotlib(axes_labels=labels, figsize=figsize)
mplot.set_canvas(FigureCanvasAgg(mplot))
subplot = mplot.get_axes()[0]
subplot.xaxis.set_label_coords(x=0.3,y=-0.12)
return mplot
a = make_graph(combined, ['x axis label', 'y axis label'])
a.savefig('test.png')
是否有更简单的方法来添加轴标签,图例和标题?
答案 0 :(得分:8)
我最终为sagemath的Graphics
对象找到了the documentation。
我必须这样做:
myplot = list_plot(
zip(range(20), range(20)),
color='red',
legend_label='legend item 1')
myplot2 = list_plot(
zip(range(20), [i*2 for i in range(20)]),
color='blue',
legend_label='legend item 2')
combined = myplot + myplot2
combined.axes_labels(['testing x axis', 'testing y axis'])
combined.legend(True)
combined.show(title='Testing title', frame=True, legend_loc="lower right")
我不完全确定为什么没有title
方法以及为什么必须在show
内指定标题时,不必使用轴,但这似乎有效。< / p>
答案 1 :(得分:-1)