Ask Your Question
0

setting plot options

asked 11 years ago

Pedro gravatar image

After a plot has been made, how can one change options but not using show() or save()?

Does command "change_options" in this code exists ?

   p = plot(some plot)
   p.change_options(ticks=[None, 1.5/4])

later on

 
p.show()
Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 11 years ago

fidbc gravatar image

For a plot p, there is a SHOW_OPTIONS dictionary which seems to work for that purpose.

For example

sage: p=plot(x^2)
sage: p.SHOW_OPTIONS['dpi']=50
sage: p.show()

It it also seems that some of the plot options are copied from the global plot options plot.options. You can adjust these, and it will only affect plots created after the modification.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 11 years ago

Seen: 438 times

Last updated: Apr 29 '13