Plot 在sage中将绘图另存为eps时如何更改帧和轴

Plot 在sage中将绘图另存为eps时如何更改帧和轴,plot,sage,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文件中验

我总是使用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文件中验证。有没有办法修改eps文件的参数,如Frame=true、axes=false


谢谢

大多数
show
的参数都可以放在
plot

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

对我来说效果很好。

我也可以将它放在保存命令中。i、 e

pic1.save('a.eps',legend_loc="lower right"          ,frame=true
          ,axes=false
          ,fontsize=15 )
当您有多个绘图时,这尤其有用