我用Seaborn版本是0.7.1和matplotlib 1.5.3。更正
下麵的代碼不顯示一個圖表。知道如何解決嗎?(適用於Python CLI在我本地計算機)
進口seaborn sns sns.set(風格=“darkgrid”)建議= sns.load_dataset(“建議”)顏色= sns.color_palette g = sns () [2]。jointplot (“total_bill”、“尖”,data =技巧,類型=“注冊”,xlim = (0, 60), ylim =(0, 12) =顏色,大小= 7)進口matplotlib。pyplot plt顯示(plt.show ())
而不是一個圖像,得到“沒有”
重複的https://forums.m.eheci.com/questions/13369/databricks-wont-display-new-plot-seaborn.html。這困惑我一點。
如果您創建的圖和軸matplotlib seaborn將自動添加情節。這個數字可以顯示在磚筆記本。
sns無花果,ax = plt.subplots ()。jointplot (“total_bill”、“尖”,data =技巧,類型=“注冊”,xlim = (0, 60), ylim =(0, 12) =顏色,大小= 7)顯示(圖)