IntelPython / sdc

Numba extension for compiling Pandas data frames, Intel® Scalable Dataframe Compiler
https://intelpython.github.io/sdc-doc/
BSD 2-Clause "Simplified" License
645 stars 61 forks source link

Parameter nrows in read_csv() #940

Open akharche opened 3 years ago

akharche commented 3 years ago

Provide the ability to read the piece of dataset. It's useful while reading by chunks.

@numba.njit(parallel=True)
def foo():
  df = pd.read_csv("test_df.csv", nrows=10)
  print(df)