Using the pmdarima.arima.ARIMA.plot_diagnostics always seems to return the following error: "AttributeError: 'Rectangle' object has no property 'normed'" pip: 20.0.2 ...
I noticed that the histogram plot fails when the data includes nan values import numpy as np import matplotlib.pyplot as plt data = np.random.random(100) data[10] = np.nan plt.hist(data ...