python - IPython notebook doubles up the qqplot -
i tested statsmodels.api.qqplot function in ipython notebook (jupyter) running python 3.6, , got 2 identical plots in column (i asked one). going on?
import statsmodels.api sm test = np.random.normal(0,1, 1000) sm.qqplot(test, line='45')
Comments
Post a Comment