How to move the x-axis ticks to the bottom of the plot frame?
Hello everyone!
The following code:
in_state = zero_vector(175*2)
in_state[176] = 1
ca = cellular_automata.Elementary(30, initial_state=in_state)
ca.evolve(175)
ca.plot()
Produces a plot where the x-axis ticks are at the top of the frame. How can I move them to the bottom of the frame? Is it possible to do this using the methods of a Graphics object?
Thanks in advance.