如何在保存情节作为eps中的圣人时更改框架和轴

时间:2014-05-30 13:04:57

标签: plot sage

我总是使用 show 命令来更改一些参数

pic1=plot(  Thermo_Cond_Sutra(por=0.4,lamb=2)
        ,(sw,0,1)
        ,color='black'
)
pic1.show(legend_loc="upper right"
        ,fontsize=15, frame=True ,axes=False
        )
pic1.save('a.eps')

然而, show()中的参数不会在我在节目后保存的eps文件中验证。有没有办法将参数如Frame = true,axes = false修改为eps文件?

感谢

2 个答案:

答案 0 :(得分:1)

show的大部分参数都已放入plot

sage: P = plot(x, frame=True, axes=False)
sage: P.save('a.eps')

对我来说很好。

答案 1 :(得分:1)

我也可以将它放在保存命令中。即。

pic1.save('a.eps',legend_loc="lower right"          ,frame=true
          ,axes=false
          ,fontsize=15 )

当你有多个图时,这个特别有用。