Re: Where can I find documentation for data[:,9]

2010-03-11 Thread Cal Who
"Martin P. Hellwig" wrote in message news:hnbq8q$vg...@news.eternal-september.org... > On 03/11/10 22:08, Cal Who wrote: > >> Thanks, that helped a lot. >> >> I'm having trouble knowing what to search for to find documenatation. For >> example, is print a Python command, a numpy command or a j

Re: Where can I find documentation for data[:,9]

2010-03-11 Thread Martin P. Hellwig
On 03/11/10 22:08, Cal Who wrote: Thanks, that helped a lot. I'm having trouble knowing what to search for to find documenatation. For example, is print a Python command, a numpy command or a java command? I like to read the documentation even if the command is working for me. Thanks again

Re: Where can I find documentation for data[:,9]

2010-03-11 Thread Cal Who
"Robert Kern" wrote in message news:mailman.631.1268335358.23598.python-l...@python.org... > On 2010-03-11 13:01 PM, Cal Who wrote: >> data = readdata( 'data/input.dat', delimiter = ',' ) >> >> input = data[:, :9]#nine data columns >> >> >> >> Where can I find documentation for the >> >> data[:

Re: Where can I find documentation for data[:,9]

2010-03-11 Thread Robert Kern
On 2010-03-11 13:01 PM, Cal Who wrote: data = readdata( 'data/input.dat', delimiter = ',' ) input = data[:, :9]#nine data columns Where can I find documentation for the data[:,9] in the code above. Been looking and found many examples but would like to know the definition. When asking q

Where can I find documentation for data[:,9]

2010-03-11 Thread Cal Who
data = readdata( 'data/input.dat', delimiter = ',' ) input = data[:, :9]#nine data columns Where can I find documentation for the data[:,9] in the code above. Been looking and found many examples but would like to know the definition. I need to skip the first column and then read 9 I wou