Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a file of lines and this in turn saves information, speed, timing and type of surfaces for each line. I want to do is sort this information in a np.array in the order shown below where the id is the number of the line.

(id)   0   1   2   3   4   5   6   7   8   9

0   t1 t2 t3 t4 t5 t6  t7 t8 t9 t10

1   t1 t2 t3 t4 t5 t6  t7 t8 t9 t10 

2   t1 t2 t3 t4 t5 t6  t7 t8 t9 t10 

3   t1 t2 t3 t4 t5 t6  t7 t8 t9 t10 

4   t1 t2 t3 t4 t5 t6  t7 t8 t9 t10 

5  t1 t2 t3 t4 t5 t6  t7 t8 t9 t10 

... thanks for any response

share|improve this question
1  
Is this input? What is expected output? – telliott99 Feb 3 '10 at 18:31
is input data ...thanks telliott99 – ricardo Feb 3 '10 at 18:33
1  
and... what do you expect as output? – telliott99 Feb 3 '10 at 19:02
in a numpy array o matrix – ricardo Feb 3 '10 at 19:36
1  
Do the id numbers appear in your file, or you only added them as a visual guide? I guess they appear, because if that's not the case, you just need to use numpy.loadtxt. – Ricardo Cárdenes Feb 3 '10 at 20:22
show 1 more comment

2 Answers

up vote 2 down vote accepted

Your may find numpy.loadtxt useful.

For example, suppose you have a file with these contents:

datafile:

(id)   0   1   
0   1 smooth 
1   11  choppy
2   20  turbulent
3   2  smooth
4   5  choppy
5  7   bumpy

Then you can load the data into a numpy structured array with

import numpy as np
arr=np.loadtxt('datafile',
               dtype=[('id','int'),('speed','float'),('surface','|S20')], 
               skiprows=1)

Notice you can skip the first line of the datafile by specifying skiprows=1.

Then you can access rows as usual with numeric indices, such as arr[1], and you can access columns by names, such as arr['speed'].

And you can get the speed in the 3rd row with arr[3]['speed'] or arr['speed'][3].

For more info on structured arrays, see http://docs.scipy.org/doc/numpy/user/basics.rec.html

share|improve this answer
Thanks ~unutbu, this is great info. – telliott99 Feb 4 '10 at 13:03

Maybe this will get you started...

data ='''
(id)   0   1   2   3   4   5   6   7   8   9

0   t1 t2 t3 t4 t5 t6  t7 t8 t9 t10

1   t1 t2 t3 t4 t5 t6  t7 t8 t9 t10 

2   t1 t2 t3 t4 t5 t6  t7 t8 t9 t10 

3   t1 t2 t3 t4 t5 t6  t7 t8 t9 t10 

4   t1 t2 t3 t4 t5 t6  t7 t8 t9 t10 

5  t1 t2 t3 t4 t5 t6  t7 t8 t9 t10'''

for line in data.strip().split('\n'):
    line = line.strip()
    if line:
        print '*'.join(line.split())

output:

(id)*0*1*2*3*4*5*6*7*8*9
0*t1*t2*t3*t4*t5*t6*t7*t8*t9*t10
1*t1*t2*t3*t4*t5*t6*t7*t8*t9*t10
2*t1*t2*t3*t4*t5*t6*t7*t8*t9*t10
3*t1*t2*t3*t4*t5*t6*t7*t8*t9*t10
4*t1*t2*t3*t4*t5*t6*t7*t8*t9*t10
5*t1*t2*t3*t4*t5*t6*t7*t8*t9*t10
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.