scikit-spectra icon indicating copy to clipboard operation
scikit-spectra copied to clipboard

Why doesn't loc[:,:] work on various test data

Open hughesadam87 opened this issue 10 years ago • 1 comments

Probably because of differnet index types, but get different behavior:

t1 = aunps_glass() t2 = solvent_evap()

t1.loc[:,:] t1.iloc[:,:] t2.loc[:,:] t2.iloc[:,:]

hughesadam87 avatar Sep 06 '14 22:09 hughesadam87

By the way, I noticed that the actual dataframe is being returned fine. It's just a printout problem. Therefore, may hack ix, iloc and loc for if [:, :] case, always just return object? Or new copy of object.

hughesadam87 avatar Sep 06 '14 22:09 hughesadam87