ValueError:压缩距离矩阵必须仅包含有限值

2024-06-07 12:47:07 发布

您现在位置:Python中文网/ 问答频道 /正文

我试图聚类并不断得到“ValueError:压缩距离矩阵必须只包含有限的值”

我已经尝试了下面的代码,无法修复该问题

df.fillna(0)
df.replace(np.nan, 0)
plt.figure(figsize=(10,3))
%matplotlib inline
plt.style.use('seaborn-whitegrid')
columns = ['hr_starting','coal','gas','hydro','nuclear','oil','other','solar','storage','wind','flywheel','total_gen','thermal_load','total_renewables','gas_percentage_of_thermal_load','philadelphia','congestion_price','energy_price','lmp_price','marginal_loss_price']
x = df[['coal','gas','hydro','nuclear','oil','other','solar','storage','wind','total_gen','thermal_load','total_renewables','congestion_price','energy_price','lmp_price','marginal_loss_price']]

y = df['total_gen']

linked = linkage(x, 'single')

labelList = range(1, 11)

plt.figure(figsize=(10, 7))
dendrogram(linked,
            orientation='top',
            labels=labelList,
            distance_sort='descending',
            show_leaf_counts=True)

plt.xlabel('cluster size')
plt.ylabel('distance')
plt.show()```

Tags: dfloadpltpricetotalgenfigureother

热门问题