|
1 | | -# print-model_parameters |
| 1 | +# print-model_parameters-1 |
2 | 2 |
|
3 | 3 | Code |
4 | | - model_parameters(model, effects = "fixed") |
| 4 | + model_parameters(model, effects = "fixed", wb_component = TRUE) |
5 | 5 | Output |
6 | 6 | Parameter | Coefficient | SE | 95% CI | t(558) | p |
7 | 7 | ------------------------------------------------------------------- |
|
27 | 27 | --- |
28 | 28 |
|
29 | 29 | Code |
30 | | - model_parameters(m1, effects = "all") |
| 30 | + model_parameters(model, effects = "fixed", wb_component = FALSE) |
| 31 | + Output |
| 32 | + # Fixed Effects |
| 33 | + |
| 34 | + Parameter | Coefficient | SE | 95% CI | t(558) | p |
| 35 | + -------------------------------------------------------------------- |
| 36 | + (Intercept) | 71.53 | 1.56 | [68.48, 74.59] | 45.98 | < .001 |
| 37 | + time | 1.09 | 0.64 | [-0.17, 2.34] | 1.70 | 0.089 |
| 38 | + phq4 within | -3.66 | 0.41 | [-4.46, -2.86] | -8.95 | < .001 |
| 39 | + phq4 between | -6.28 | 0.50 | [-7.27, -5.30] | -12.53 | < .001 |
| 40 | + Message |
| 41 | + |
| 42 | + Uncertainty intervals (equal-tailed) and p-values (two-tailed) computed |
| 43 | + using a Wald t-distribution approximation. |
| 44 | + |
| 45 | +# print-model_parameters-2 |
| 46 | + |
| 47 | + Code |
| 48 | + model_parameters(m1, effects = "all", wb_component = TRUE) |
31 | 49 | Output |
32 | 50 | # Fixed Effects |
33 | 51 | |
|
52 | 70 | --- |
53 | 71 |
|
54 | 72 | Code |
55 | | - model_parameters(m1, effects = "fixed", include_info = TRUE) |
| 73 | + model_parameters(m1, effects = "all", wb_component = FALSE) |
| 74 | + Output |
| 75 | + # Fixed Effects |
| 76 | + |
| 77 | + Parameter | Coefficient | SE | 95% CI | t(28) | p |
| 78 | + ----------------------------------------------------------------- |
| 79 | + (Intercept) | 0.65 | 0.50 | [-0.38, 1.68] | 1.29 | 0.206 |
| 80 | + cyl | 0.40 | 0.08 | [ 0.25, 0.56] | 5.29 | < .001 |
| 81 | + |
| 82 | + # Random Effects |
| 83 | + |
| 84 | + Parameter | Coefficient | SE | 95% CI |
| 85 | + -------------------------------------------------------- |
| 86 | + SD (Intercept: gear) | 0.27 | 0.24 | [0.05, 1.54] |
| 87 | + SD (Residual) | 0.59 | 0.08 | [0.46, 0.77] |
| 88 | + Message |
| 89 | + |
| 90 | + Uncertainty intervals (equal-tailed) and p-values (two-tailed) computed |
| 91 | + using a Wald t-distribution approximation. Uncertainty intervals for |
| 92 | + random effect variances computed using a Wald z-distribution |
| 93 | + approximation. |
| 94 | + |
| 95 | +--- |
| 96 | + |
| 97 | + Code |
| 98 | + model_parameters(m1, effects = "fixed", include_info = TRUE, wb_component = TRUE) |
| 99 | + Output |
| 100 | + # Fixed Effects |
| 101 | + |
| 102 | + Parameter | Coefficient | SE | 95% CI | t(28) | p |
| 103 | + ----------------------------------------------------------------- |
| 104 | + (Intercept) | 0.65 | 0.50 | [-0.38, 1.68] | 1.29 | 0.206 |
| 105 | + cyl | 0.40 | 0.08 | [ 0.25, 0.56] | 5.29 | < .001 |
| 106 | + |
| 107 | + Model: wt ~ cyl (32 Observations) |
| 108 | + Sigma: 0.594 (df = 28) |
| 109 | + RMSE : 0.564 |
| 110 | + Conditional R2: 0.628; Marginal R2: 0.550 |
| 111 | + Message |
| 112 | + |
| 113 | + Uncertainty intervals (equal-tailed) and p-values (two-tailed) computed |
| 114 | + using a Wald t-distribution approximation. |
| 115 | + |
| 116 | +--- |
| 117 | + |
| 118 | + Code |
| 119 | + model_parameters(m1, effects = "fixed", include_info = TRUE, wb_component = FALSE) |
56 | 120 | Output |
57 | 121 | # Fixed Effects |
58 | 122 | |
|
0 commit comments