Pycharm和matplotlib仅在调试模式下工作

时间:2018-01-29 15:22:30

标签: python debugging matplotlib pycharm

我在Pycharm 2017.3.3社区版中遇到了一个奇怪的问题。我正在制作一个循环,应该在每次迭代中显示不同的数字。当我运行代码时,只显示第一个图并且程序卡住了。如果我在没有断点的调试模式下运行代码,也会发生同样的情况。但是,如果我设置了断点,并在程序到达断点时继续恢复,则会显示所有数字并且程序成功完成执行。还想澄清一点,我之前使用过的代码少了一些数字而且效果很好。

以下是代码:

import matplotlib.pyplot as plt
import pandas as pd
import numpy as np
from sklearn.externals import joblib

feat_file = 'C:\\Users\\DianaCarolina\\Google Drive\\Maestría\\datos\\indices_Diana\\all_type.xlsx'
sites = {"Bosque":['5256', '5260'], "Rastrojo": ['5253', '5255'], "Pastizal": ['5257', '7125']}
model=joblib.load("C:\\Users\\DianaCarolina\\Google Drive\\Maestría\\datos\\indices_Diana\\ecotyhmm13_3.pkl")
nclasses = 13
for comp in range(nclasses):
    histData = []
    types = []
    col = []
    for type in sites:
        df = pd.read_excel(feat_file, sheet_name=type, index_col=0)
        mdata=df.loc[df.iloc[:, 20] == comp, "Mes"]
        types.append(type)
        histData.append(mdata)

        if len(col) < 3:
            if type == "Bosque" and "green" not in col:
                col.append("green")
            elif type == "Rastrojo" and "orange" not in col:
                col.append("orange")
            elif type == "Pastizal" and "yellow" not in col:
                col.append("yellow")

    mclass = np.sum(np.array([model.gmms_[comp].weights_]).T * model.gmms_[comp].means_, 0)

    plt.figure()

    if not histData[0].empty or not histData[1].empty or not histData[2].empty:
        plt.subplot(2, 1, 1)
        n, bins, patches = plt.hist(histData, np.arange(0.5,13, 1), stacked=True, label= types, color = col, rwidth=0.8)
        plt.legend()
        plt.xticks(range(1,13), ("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", \
                                      "Septiembre", "Octubre", "Noviembre", "Diciembre"))
        plt.title("Clase "+str(comp+1)+" de "+str(nclasses))

        plt.subplot(2, 1, 2)

    plt.stem(mclass)
    plt.xticks(range(14), list(df.loc[:, "M":"Salida2_4"]))
    plt.title("Medias de características para la clase")
    plt.show()

1 个答案:

答案 0 :(得分:1)

plt.show()通常只应在代码末尾调用一次。这将显示已创建的所有数字,并且阻止执行后面的任何代码。

E.g。

import matplotlib.pyplot as plt

for i in range(2):
    plt.figure()
    plt.plot([1,2,3])

    plt.show()

这只会在关闭第一个之后显示第二个数字

最简单的解决方案是取消缩进plt.show(),这样一旦创建了所有数字,它们都会被显示出来。