I have $N=1500$ sampled data points $\mathbf{y} = \{y_1, ... ,y_N\}$ which I would like to relate to some explanatory variables $\mathbf{X}$ and a parameter vector $\mathbf{\beta}$ i.e.
$\mathbb{E}(Y_i) = \mathbf{x_i}^T\mathbf{\beta}$
The first thing I would like to do is fit a distribution to $\mathbf{y}$.The R function fitdistr()
suggests that a Weibull distribution be used. Unfortunately, some of the data is negative valued i.e. $y_i < 0$, and thus I cannot fit a Weibull distribution properly.
I want a distribution that acknowledges that my sample can be negative. Do I fit the Weibull to a shifted distribution or do I create a new distribution that fits my data? This new distribution would belong to the exponential family of distributions.