I have a .dat file which contains about 1000 lines each line contains
letter int int int int boolean
and i am trying to read it in so each line is a new row on my array.
currently I have np.genfromtxt('myfile.dat') which gives me
nan 23. 34. 23. 55. 1.
this is almost right but that nan should be the letter 't' any idea how I get to read in the correct letter? And also how do I get rid of the . after each number?
cheers