I'd like to index into a Dask dataframe -- like iloc in Pandas, but I know that this is not possible.
Would the following be an okay workaround? Are there potential drawbacks?
df.reset_index(drop=True)
df['column'].loc[index]
I'm guessing there must be some drawback to this -- otherwise, why isn't this the implementation for iloc in Dask?
pandas? Including the sample data please. - joebeeson