The formula (i.e. y~x) used for beta-regression is unclear to me. I would like to know what the resulting equation would be for a predicted beta-regression curve with the following summary output:
Call:
betareg(formula = DRatio ~ SVL1 + I(SVL1^2) | SVL1 + I(SVL1^2), data = sub.data, link = c("loglog"))
Standardized weighted residuals 2:
Min 1Q Median 3Q Max
-2.1507 -0.5259 -0.0668 0.8108 1.9400
Coefficients (mean model with loglog link):
Estimate Std. Error z value Pr(>|z|)
(Intercept) -0.9264491 0.9592569 -0.966 0.334
SVL1 0.0464020 0.0768280 0.604 0.546
I(SVL1^2) -0.0004087 0.0014260 -0.287 0.774
Phi coefficients (precision model with log link):
Estimate Std. Error z value Pr(>|z|)
(Intercept) 6.122960 2.179827 2.809 0.00497 **
SVL1 -0.400180 0.159235 -2.513 0.01197 *
I(SVL1^2) 0.006920 0.002816 2.458 0.01398 *
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Type of estimator: ML (maximum likelihood)
Log-likelihood: 7.927 on 6 Df
Pseudo R-squared: 0.02014
Number of iterations: 24 (BFGS) + 2 (Fisher scoring)
I assume I must use the coefficients of the model. However, is the mean model supposed to be used? or can the precision model be used instead? I understand beta-regressions are complicated because the y-values are bound between 0 and 1, however if I want to plot this predictive curve in R I need to know what equation and what coefficients to use in a y~x format. Please advise.