0
我有以下代碼如何繪製由statsmodels在同一個pyplot中繪製函數創建的2個圖?
from statsmodels.graphics.factorplots import interaction_plot
import statsmodels.api as sm
import matplotlib.pyplot as plt
# ...
fig1 = interaction_plot(a, b, c, colors=['red', 'blue'], markers=['D', '^'], ms=10)
fig2 = sm.qqplot(model.resid, line='s')
plt.show()
產生圖1和圖2分別在單獨的窗口。
如何在同一窗口中繪製這兩個數字?