Reputation: 389
I am trying to get only the columns what I want, like how we do in pandas.
use_cols = ["ArrDelay", "DepDelay"]
df = pd.read_csv(path, usecols=use_cols)
df
Is there an option similar to that in arrow ?
dataset = ds.dataset(path, format="csv")
Upvotes: 0
Views: 1199