Ask Your Question
0

Graphics array without ticks

asked 2017-07-15 09:16:53 +0200

test1234 gravatar image

updated 2017-07-15 09:30:34 +0200

vdelecroix gravatar image

Hello,

how can I create a graphics array consisting of 4 graphs without ticks? I tried this:

p1=plot(EllipticCurve([0,0,0,-1,2]), color='red', ticks=[[],[]])
p2=plot(EllipticCurve([0,0,0,1,-1]), color='red', ymin=-3, ymax=3, ticks=[[],[]])
p3=plot(EllipticCurve([0,0,0,-1,-1]), color='red', ymin=-4, ymax=4, ticks=[[],[]])
graphics_array(((p1,p2),(p3,p1)))

But it doesn't work. Only the last graphic is without ticks. Thank you very much! :)

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2017-07-15 15:41:46 +0200

kcrisman gravatar image

Unfortunately there are several long-standing graphics array issues. This one is probably Trac 10657.

Some workarounds are posited at this question and this question, though you would have to see whether they work for yours. I did try

graphics_array(((p1,p2),(p3,p1))).show( ticks=[[],[]])

and it seems to work.

edit flag offensive delete link more

Comments

@kcrisman But I can't save the graphic anymore. Is it possible that I can save it too?

test1234 gravatar imagetest1234 ( 2017-07-21 00:19:09 +0200 )edit

Does graphics_array(((p1,p2),(p3,p1))).save( 'x.png', ticks=[[],[]]) not work?

kcrisman gravatar imagekcrisman ( 2017-07-21 04:24:24 +0200 )edit

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: 2017-07-15 09:16:53 +0200

Seen: 236 times

Last updated: Jul 15 '17