We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95cc3d0 commit 423129eCopy full SHA for 423129e
packages/python/plotly/plotly/figure_factory/_dendrogram.py
@@ -343,10 +343,10 @@ def get_dendrogram_traces(
343
color_threshold=color_threshold,
344
)
345
346
- icoord = scp.array(P["icoord"])
347
- dcoord = scp.array(P["dcoord"])
348
- ordered_labels = scp.array(P["ivl"])
349
- color_list = scp.array(P["color_list"])
+ icoord = np.array(P["icoord"])
+ dcoord = np.array(P["dcoord"])
+ ordered_labels = np.array(P["ivl"])
+ color_list = np.array(P["color_list"])
350
colors = self.get_color_dict(colorscale)
351
352
trace_list = []
0 commit comments