Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4660998 commit 0f155ecCopy full SHA for 0f155ec
packages/python/plotly/plotly/express/_core.py
@@ -1634,7 +1634,9 @@ def aggfunc_continuous(x):
1634
df_tree["parent"] = df_tree["parent"].str.rstrip("/")
1635
if cols:
1636
df_tree[cols] = dfg[cols]
1637
- df_all_trees = df_all_trees.append(df_tree, ignore_index=True)
+ df_all_trees_old = df_all_trees.append(df_tree, ignore_index=True)
1638
+ df_all_trees = pd.concat([df_all_trees, df_tree], ignore_index=True)
1639
+ assert df_all_trees.equals(df_all_trees_old)
1640
1641
# we want to make sure than (?) is the first color of the sequence
1642
if args["color"] and discrete_color:
0 commit comments