I am using arimax model to calculate incremental sales due to promotions. Arima code is as below
**out <- try(Arima(unlist(final_data$total_sales), order=c(1,1,0),seasonal=c(0,0,0), xreg=reg_inp, include.mean=TRUE,include.drift=TRUE,transform.pars=TRUE,fixed=NULL, init=NULL, method="ML",kappa=1e6))**
Co-Efficients of the arima produces negative values for some predictors and I use these coefficients to calculate incremental sales
So my question is an is there any way to restrict my coefficients to give me only positive numbers?