Guest User

Untitled

a guest
Mar 20th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. confint(model, level = 1 -0.15/length(coef(model)))
  2.  
  3. > confint(ACFL.m1, level = 1 -0.15/length(coef(ACFL.m1)))
  4. 1.87 % 98.12 %
  5. (Intercept) 1.5838374 3.2846837
  6. PDCD 8.6257799 12.3346769
  7. PMIX -17.6815440 6.8408247
  8. RTCL 0.2888126 0.6987631
  9.  
  10. > K <- cbind(0, diag(length(coef(ACFL.m1))-1))
  11. > rownames(K) <- names(coef(ACFL.m1)) [-1]
  12. > ACLF.mc <- glht(ACFL.m1, linfct = K)
  13. > ACFL.ci <- confint(ACLF.mc, level = 0.85)
  14. > ACFL.ci
  15.  
  16. Simultaneous Confidence Intervals
  17.  
  18. Fit: lm(formula = PINDX ~ PDCD + PMIX + RTCL, data = ACFL)
  19.  
  20. Quantile = 1.9021
  21. 85% family-wise confidence level
  22.  
  23.  
  24. Linear Hypotheses:
  25. Estimate lwr upr
  26. PDCD == 0 10.4802 8.7910 12.1695
  27. PMIX == 0 -5.4204 -16.5895 5.7488
  28. RTCL == 0 0.4938 0.3071 0.6805
Add Comment
Please, Sign In to add comment