sdc icon indicating copy to clipboard operation
sdc copied to clipboard

Parameter nrows in read_csv()

Open akharche opened this issue 4 years ago • 0 comments

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)

akharche avatar Oct 27 '20 14:10 akharche