|
|
@ -355,7 +355,10 @@ class Shuffle(Generator):
|
|
|
|
self._df = self._df.loc[_index][_ocolumns]
|
|
|
|
self._df = self._df.loc[_index][_ocolumns]
|
|
|
|
self._df.index = np.arange(self._df.shape[0])
|
|
|
|
self._df.index = np.arange(self._df.shape[0])
|
|
|
|
self._df = self._df.join(_iodf)
|
|
|
|
self._df = self._df.join(_iodf)
|
|
|
|
|
|
|
|
#
|
|
|
|
|
|
|
|
# The following is a full shuffle
|
|
|
|
|
|
|
|
self._df = self._df.loc[_index]
|
|
|
|
|
|
|
|
self._df.index = np.arange(self._df.shape[0])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_log = {'action':'io-data','input':{'candidates':1,'rows':int(self._df.shape[0])}}
|
|
|
|
_log = {'action':'io-data','input':{'candidates':1,'rows':int(self._df.shape[0])}}
|
|
|
|