You cannot do this - you will need to change the function read_csvand possibly other functions in pandas.
EDIT:
It seems now this can be done with chunksize=rows_number.
iterator=True - , , .
Jeff
import pandas as pd
from StringIO import StringIO
data = """A,B,C
foo,1,2,3
bar,4,5,6
baz,7,8,9
"""
reader = pd.read_csv(StringIO(data), chunksize=1)
for x in reader:
print x
print '--- next data ---'
:
A B C
foo 1 2 3
--- next data ---
A B C
bar 4 5 6
--- next data ---
A B C
baz 7 8 9
--- next data ---