Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
279 views
in Technique[技术] by (71.8m points)

python - TypeError: linkage() takes exactly 3 positional arguments (1 given)

I was trying to plot a dendogram for Agglomerative Clustering and suddenly it showed an unknown TypeError.

I tried plotting it with some other dataset. It works fine with the parameters provided but here it doesn't.

I'm attaching the piece of code here

from scipy.cluster.hierarchy import linkage
import scipy.cluster.hierarchy as sch
z=linkage(DF,method="complete",metric="euclidean")
plt.figure(figsize=(20,5))
plt.title("Dendogram")
plt.xlabel("Index")
plt.ylabel("Distance")
sch.dendrogram(
     z,
    leaf_rotation=0,
)
plt.show()

The error I get:

TypeError: linkage() takes exactly 3 positional arguments (1 given)

question from:https://stackoverflow.com/questions/66053528/typeerror-linkage-takes-exactly-3-positional-arguments-1-given

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...