python の 階層的クラスタリングの図で x軸表示を指定したいです。
どこにx軸指定したらいいかわからないです。
X軸を 日付にしたいです。
このような質問で宜しいでしょうか?
よろしくお願いいたします。
|列1|列2|列3|列4|列5|列6|列7|
|:--|:--:|--:|
||||
|Date|A|B|C|D|E|F|
|2021/1/1| 33| 272| 936| 7089| 19| 282|
|2018/1/2| 0| 161| 84| 614| 288| 74|
|2015/1/3| 83| 121| 814| 814| 483| 475|
|2012/1/4| 32| 63| 625| 532| 220| 935|
試したコード
import pandas as pd import matplotlib.pyplot as plt from pandas.plotting import scatter_matrix from scipy.cluster.hierarchy import linkage, dendrogram df = pd.read_csv(testdata, header = 0, encoding = 'cp932', engine = 'python') result1 = linkage(df.iloc[:, 1:6], metric = 'braycurtis') method = 'average') dendrogram(result1) plt.title("test1") plt.ylabel("Threshold") plt.show()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。