|
From: Jody K. <jk...@uv...> - 2013-10-01 18:02:04
|
On Oct 1, 2013, at 10:55 AM, KURT PETERS <pet...@ms...> wrote: > Goyo, > Thanks, the code below seems to work. The problem is that with "REAL/actual" data, I have SO many data points that each point is now labeled and it takes forever to render. And when it does render, I cannot read the axis because there are too many there. Is there a way to judiciously have it only display a certain number of values? Such as every 100th value? > Kurt > > ax2.set_xticks(xdat) > ax2.set_xticklabels(simtimedata) ax2.set_xticks(xdat[::100]) ax2.set_xticklabels(simtimedata[::100]) Cheers, Jody -- Jody Klymak http://web.uvic.ca/~jklymak/ |