Skip to content
Snippets Groups Projects
Commit cd5837a8 authored by Johannes Schumann's avatar Johannes Schumann
Browse files

Update pandas append to concat because of deprecation warning

parent 6cf5d335
No related branches found
No related tags found
No related merge requests found
......@@ -552,7 +552,7 @@ class GiBUUOutput:
sec_df.loc[:, "barcode"] = sec_pdgid
sec_df.index = pd.MultiIndex.from_tuples(
zip(*np.unique(df.index.get_level_values(0), return_counts=True)))
df = df.append(sec_df)
df = pd.concat([df, sec_df])
return df
@property
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment