Re: Plotting syntax

2013-02-07 Thread Oscar Benjamin
On 7 February 2013 09:37, Jean-Michel Pichavant wrote: > - Original Message - > >> Hi Python experts, >> I am working with an array of data and am trying to plot several >> columns of data which are not continuous; i.e. I would like to plot >> columns 1:4 and 6:8, without plotting column 5

Re: Plotting syntax

2013-02-07 Thread Jean-Michel Pichavant
- Original Message - > Hi Python experts, > I am working with an array of data and am trying to plot several > columns of data which are not continuous; i.e. I would like to plot > columns 1:4 and 6:8, without plotting column 5. The syntax I am > currently using is: > oplot (t,d[:,0:4])

Re: Plotting syntax

2013-02-06 Thread Steven D'Aprano
On Wed, 06 Feb 2013 10:37:07 -0500, Vladimir Ivkovic wrote: > Hi Python experts, > > I am working with an array of data and am trying to plot several columns > of data which are not continuous; i.e. I would like to plot columns 1:4 > and 6:8, without plotting column 5. The syntax I am currently u

Plotting syntax

2013-02-06 Thread Vladimir Ivkovic
Hi Python experts, I am working with an array of data and am trying to plot several columns of data which are not continuous; i.e. I would like to plot columns 1:4 and 6:8, without plotting column 5. The syntax I am currently using is: oplot (t,d[:,0:4]) The question is: How do I specif