Skip to content

Commit

Permalink
fix: pandas update: append > concat
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiquesydow committed Apr 10, 2023
1 parent 0d1a98d commit 22cf274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dynophores/core/superfeature.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def _count(self, property_envpartners_occurrences):
)
envpartners_count = property_envpartners_occurrences.sum()

return superfeature_count.append(envpartners_count)
return pd.concat([superfeature_count, envpartners_count])

@property
def frequency(self):
Expand Down

0 comments on commit 22cf274

Please sign in to comment.