I'm using the Statsmodels statespace sarimax like so:
model = sm.tsa.statespace.SARIMAX(param1, param2, etc)
fit_model = model.fit()
When this process is running, there's an output of the process printed on the terminal, see below:
Is there a way to turn this output off?
fit
keyword disp=0 might work. – Kennie