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?