Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
fealho committed May 14, 2024
1 parent 0840c7f commit b188f13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdv/sequential/par.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def _transform_sequence_index(self, data):
fill_value = min(sequence_index_sequence[self._sequence_index].dropna())
sequence_index_sequence = sequence_index_sequence.fillna(fill_value)

data[self._sequence_index] = sequence_index_sequence[self._sequence_index]
data[self._sequence_index] = sequence_index_sequence[self._sequence_index].to_numpy()
data = data.merge(
sequence_index_context,
left_on=self._sequence_key,
Expand Down

0 comments on commit b188f13

Please sign in to comment.