Is there any way to read n rows from row say 25 of sas dataset in python. Can we provide range in chunksize?
we can do a hack with chunksize:
a = pd.read_sas('file.sas7bdat', chunksize=11)
df = a.read()
a.close()
print(df)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With