Skip to content

Commit

Permalink
Merge branch 'main' into issue-enterprise-919
Browse files Browse the repository at this point in the history
  • Loading branch information
fealho authored Dec 13, 2024
2 parents 932ac68 + 47bc8d4 commit ecc6035
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 @@ -478,7 +478,7 @@ def _sample_from_par(self, context, sequence_length=None):

output.append(sequence_df)

output = pd.concat(output)
output = pd.concat([df.dropna(axis=1, how='all') for df in output])
output = output[self._output_columns].reset_index(drop=True)

return output
Expand Down

0 comments on commit ecc6035

Please sign in to comment.