编程语言
首页 > 编程语言> > python – 如何在sagemath中添加标题,轴标签和图例?

python – 如何在sagemath中添加标题,轴标签和图例?

作者:互联网

我目前正在使用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')

是否有更简单的方法来添加轴标签,图例和标题?

解决方法:

我最终为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")

我不完全确定为什么没有标题方法以及为什么必须在轴内显示标题时不必使用轴,但这看起来确实有效.

标签:python,graphing,sage
来源: https://codeday.me/bug/20190613/1231657.html