I have a dependent variable, y, which appears to show a U-Shaped pattern. I want to prove that a U-shape is the most likely model than any other model type.
Since my y variable is percentages, it seems appropriate to use a Beta Regression to model my data. However I am now unsure how to model the U-Shape.
Reading this post that talks about Gaussian mixture models and U-shaped data, I was wondering if it is possible to implement a similar method with beta models?
I have been using betareg
in R, to implement my models.
Some simulated data would be something like:
set.seed(0)
y <- rbeta(1000, shape1 = 0.5, shape2 = 0.5)