| 1 | initial version |
I'm not sure I understand exactly what you are doing. But, you can specify the tickmarks using ticks.
a=[1,2,3,0.3,0.4]
list_plot(a,ticks=[[0.5,0.7,1],[1,2,3]])
You can specify the min and max of the axis ranges with xmin, xmax, ymin,ymax.
a=[1,2,3,0.3,0.4]
list_plot(a,ticks=[[0.5,0.7,1],[1,2,3]],xmax=7)
Does this help?
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.