sdc
sdc copied to clipboard
Parameter nrows in read_csv()
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)