In MATLAB, we can specify an ARIMA(p, D, q) model with known parameter values by using the following function
tdist = struct('Name','t','DoF',10);
model = arima('Constant',0.4,'AR',{0.8,-0.3},'MA',0.5,...
'D',1,'Distribution',tdist,'Variance',0.15)
In Python or R, Can I do this to build my own model?
After that, I need use this model to predict my dataset
In Python or R, Can I do this?