I want to use pandas read_csv() func where the input is a python iterator,
where each next() will bring to the next line of my text file.
What would you suggest me to do? I want best performance.
As I understood, StringIO works in that case, but i would rather to not use that.
BTW, after that I'm using as_matrix() function in order to create a numpy array.
Doing so because it's much faster than np.loadtxt() func which is horribly slow :(