I want to do multiple regression using the dependent variable "posn_neg_5" using a mixture of continuous and binary independent variables. However, posn_neg_5 is not normally distributed (see below). I would like to avoid transformation so that the output remains in units the readers can understand/ interpret.
table(posn_neg_5)
posn_neg_5
1 2 3 4 5
54 29 28 263 468
hist(posn_neg_5)
shapiro.test(posn_neg_5)
Shapiro-Wilk normality test
data: posn_neg_5
W = 0.66667, p-value < 2.2e-16
Should I use 'quantreg'? Do people generally accept use of this?
Thanks,
Stephen