1
我試圖讓Seaborn kdeplot示例在我的數據集上工作。出於某種原因,我的一個數據集完全沒有繪圖,但另一個似乎正在繪圖。爲了得到一個最小的工作示例,我從我的非常大的數據集中只抽取了10行。Seaborn kdeplot不能繪製一些數據?
我輸入的數據是這樣的:
#Dataframe dfA
index x y category
0 595700 5 1.000000 14.0
1 293559 4 1.000000 14.0
2 562295 3 0.000000 14.0
3 219426 4 1.000000 14.0
4 592731 2 1.000000 14.0
5 178573 3 1.000000 14.0
6 553156 4 0.500000 14.0
7 385031 1 1.000000 14.0
8 391681 3 0.999998 14.0
9 492771 2 1.000000 14.0
# Dataframe dfB
index x y category
0 56345 3 1.000000 6.0
1 383741 4 1.000000 6.0
2 103044 2 1.000000 6.0
3 297357 5 1.000000 6.0
4 257508 3 1.000000 6.0
5 223600 2 0.999938 6.0
6 44530 2 1.000000 6.0
7 82925 3 1.000000 6.0
8 169592 3 0.500000 6.0
9 229482 4 0.285714 6.0
我的代碼片段看起來是這樣的:
爲什麼不從數據框中dfA
數據實際繪圖?
您是隻創建一個座標軸對象並將它們繪製到同一個座標系中(甚至不需要繪製座標軸)?關於'''f,axarr = plt.subplots(2)'''''sns.kdeplot(dfA.x,dfA.y, cmap =「Reds」,shade = True,shade_lowest = False,ax = axarr [0])'''+ sns.kdeplot(dfB.x,dfB.y, cmap =「Blues」,shade = True,shade_lowest = False,ax = axarr [1])''' – sascha
我試圖在同一軸上繪製兩者。但即使我評論第二條情節評論,dfA也不會出現 – Joe