我試圖使它像這樣,但它說沒有對象的屬性,以絲毫不差如何在matplotlib(python)中添加軸的標題和標籤?
import matplotlib
matplotlib.use('Svg')
from pylab import *
clf()
tittle("frequency of words")
xlabel("words")
ylabel("frequency")
我試圖使它像這樣,但它說沒有對象的屬性,以絲毫不差如何在matplotlib(python)中添加軸的標題和標籤?
import matplotlib
matplotlib.use('Svg')
from pylab import *
clf()
tittle("frequency of words")
xlabel("words")
ylabel("frequency")
你需要創建一個數字之前,你可以設置它的標題:
figure()
title('frequency of words')
那麼我需要把clf()以及? – 2013-05-10 10:58:08
@Erika嗯,我現在還不確定。 'clf'清除當前圖形,但是如果我在創建圖形之前運行它,它會創建一個圖形。所以你的代碼實際上適用於我(除了錯字)。但是你可以嘗試把'figure()'而不是'clf()'以防萬一 – 2013-05-10 11:01:31
好的!非常感謝! – 2013-05-10 11:03:22
錯字錯誤:它是標題(...)沒有tittle(..) – lucasg 2013-05-10 10:57:46
啊耶!謝謝!! :) – 2013-05-10 10:59:19