python如何读取数据框中的数据,如何在Python数据框中读取大块数据?
I want to read the file f in chunks to a dataframe. Here is part of a code that I used.for i in range(0, maxline, chunksize):df = pandas.read_csv(f,sep=',', nrows=chunksize, skiprows=i)df.to_sql(membe...