This commit is contained in:
Steve Nyemba 2022-04-21 11:12:09 -05:00
parent 587248c63b
commit aa41d371f4
1 changed files with 4 additions and 1 deletions

View File

@ -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])}}