Do we need `polars.CSVDataset`? Its `load` method ...
# questions
c
Do we need
polars.CSVDataset
? Its
load
method uses
pl.read_csv
like
polars.EagerPolarsDataset
.
polars.CSVDataset
was created Feb 2023 and the more general
polars.EagerPolarsDataset
arrived later in Oct 2023.
m
Hi Chris, good question! I had to dig through history to answer this 😂 The
polars.CSVDataset
was added first and then later we added datasets for generic data loading with polars. Technically,
polars.CSVDataset
is indeed not needed anymore. I guess we just never got round to removing it.
thankyou 2