2016-04-16 89 views

回答

0

您的問題缺乏相關信息,如到底是什麼,你換了在任何情況下,這樣的事情應該解決您的問題:

import matplotlib as mpl 
mpl.rcParams.update(mpl.rcParamsDefault) 
+0

哦,我的意思的變化是背景顏色已經變成白色,因此我再也看不到要使用的現有的打印樣式圖中的網格。 –

+0

這些情節似乎是來自seaborn,所以嘗試改變你喜歡的東西的樣式(也許是「darkgrid」:https://stanford.edu/~mwaskom/software/seaborn/tutorial/aesthetics.html#temporarilysetting-figure-樣式)。 – armatita

+0

armatita,謝謝你的回覆。你給的鏈接就是我正在尋找的鏈接! –

0

試試這個:

import matplotlib.pyplot as plt 
print plt.style.available 

,這將給你你的機器(「經典」,「seaborn」等上的可用樣式列表)。

從這裏你可以設置你想要

plt.style.use('classic') 
+0

thx回覆! –