-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path03-lca-enum.Rmd
More file actions
578 lines (449 loc) · 17.6 KB
/
Copy path03-lca-enum.Rmd
File metadata and controls
578 lines (449 loc) · 17.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE,
warning = FALSE,
message = FALSE) #Here, I have made it so that when you knit your .rmd, warnings and messages will not show up in the html markdown.
```
# (PART) Latent Class Analysis {-}
# Enumeration {#lca-enum}
------------------------------------------------------------------------
Example: Bullying in Schools
------------------------------------------------------------------------
To demonstrate mixture modeling in the training program and online resource components of the IES grant we utilize the *Civil Rights Data Collection (CRDC)*[@usdoe2014] data repository.
The CRDC is a federally mandated school-level data collection effort that occurs every other year.
This public data is currently available for selected latent class indicators across 4 years (2011, 2013, 2015, 2017) and all US states.
In this example, we use the Arizona state sample.
We utilize six focal indicators which constitute the latent class model in our example; three variables which report on harassment/bullying in schools based on disability, race, or sex, and three variables on full-time equivalent school staff hires (counselor, psychologist, law enforcement).
This data source also includes covariates on a variety of subjects and distal outcomes reported in 2018 such as math/reading assessments and graduation rates.
------------------------------------------------------------------------
Load packages
```{r, cache = FALSE}
library(tidyverse)
library(haven)
library(glue)
library(MplusAutomation)
library(here)
library(janitor)
library(gt)
library(cowplot)
library(DiagrammeR)
```
## Variable Description
```{r, echo=FALSE, eval=TRUE}
tribble(
~"Name", ~"Label", ~"Values",
#--------------|--------------------------------|-----|,
"leaid", "District Identification Code", "",
"ncessch", "School Identification Code", "",
"report_dis", "Number of students harassed or bullied on the basis of disability", "0 = No reported incidents, 1 = At least one reported incident",
"report_race", "Number of students harassed or bullied on the basis of race, color, or national origin", "0 = No reported incidents, 1 = At least one reported incident",
"report_sex", "Number of students harassed or bullied on the basis of sex", "0 = No reported incidents, 1 = At least one reported incident",
"counselors_fte", "Number of full time equivalent counselors hired as school staff", "0 = No staff present, 1 = At least one staff present",
"psych_fte", "Number of full time equivalent psychologists hired as school staff", "0 = No staff present, 1 = At least one staff present",
"law_fte", "Number of full time equivalent law enforcement officers hired as school staff", "0 = No staff present, 1 = At least one staff present") %>%
gt() %>%
tab_header(
title = "LCA indicators" # Add a title
) %>%
tab_options(
table.width = pct(75)
) %>%
tab_footnote(
footnote = "Civil Rights Data Collection (CRDC)",
location = cells_title())
```
------------------------------------------------------------------------
**Variables have been transformed to be dichotomous indicators using the following coding strategy**
Harassment and bullying count variables are recoded `1` if the school reported at least one incident of harassment (`0` indicates no reported incidents).
On the original scale reported by the CDRC staff variables for full time equivalent employees (FTE) are represented as `1` and part time employees are represented by values between `1` and `0`.
Schools with greater than one staff of the designated type are represented by values greater than 1.
All values greater than zero were recorded as `1s` (e.g., `.5`, `1`,`3`) indicating that the school has a staff present on campus at least part time.
Schools with no staff of the designated type are indicated as `0` for the dichotomous variable.
------------------------------------------------------------------------
```{r, echo=FALSE, eval=TRUE, fig.align='center'}
grViz(" digraph cfa_model {
# The `graph` statement - No editing needed
graph [layout = dot, overlap = true]
# Two `node` statements
# One for measured variables (box)
node [shape=box]
report_dis report_race report_sex counselors_fte psych_fte law_fte;
# One for latent variables (circle)
node [shape=circle]
bully [label=<Bullying <br/>C<sub>k</sub>>];
# `edge` statements
edge [minlen = 2]
bully -> {report_dis report_race report_sex counselors_fte psych_fte law_fte}
}")
```
------------------------------------------------------------------------
## Prepare Data
```{r, eval=TRUE}
df_bully <- read_csv(here("data", "crdc_lca_data.csv")) %>%
clean_names() %>%
dplyr::select(report_dis, report_race, report_sex, counselors_fte, psych_fte, law_fte)
```
------------------------------------------------------------------------
## Descriptive Statistics
```{r}
dframe <- df_bully %>%
pivot_longer(
c(report_dis, report_race, report_sex, counselors_fte, psych_fte, law_fte),
names_to = "Variable"
) %>%
group_by(Variable) %>%
summarise(
Count = sum(value == 1, na.rm = TRUE),
Total = n(),
.groups = "drop"
) %>%
mutate(`Proportion Endorsed` = round(Count / Total, 3)) %>%
select(Variable, `Proportion Endorsed`, Count)
gt(dframe) %>%
tab_header(
title = md("**LCA Indicator Endorsement**"),
subtitle = md(" ")
) %>%
tab_options(
column_labels.font.weight = "bold",
row_group.font.weight = "bold"
)
```
Save as image
```{r, eval = FALSE}
gtsave(prop_table, here("figures", "prop_table.png"))
```
Frequency Plot
```{r out.width="90%"}
data_long <- df_bully %>%
pivot_longer(c(report_dis, report_race, report_sex, counselors_fte, psych_fte, law_fte), names_to = "variable")
# Bar plot for 0/1 indicators
ggplot(data_long, aes(x = factor(value))) +
geom_bar(fill = "#69b3a2", color = "black") +
geom_text(stat = "count", aes(label = after_stat(count)),
vjust = -0.5, size = 3.5) +
facet_wrap(~ variable) +
labs(
title = "Binary Indicator Distributions",
x = "Value (0 = No, 1 = Yes)",
y = "Count"
) +
theme_cowplot()
```
------------------------------------------------------------------------
## Enumeration
This code uses the `mplusObject` function in the `MplusAutomation` package and saves all model runs in the `enum` folder.
```{r, cache = TRUE}
lca_6 <- lapply(1:6, function(k) {
lca_enum <- mplusObject(
TITLE = glue("{k}-Class"),
VARIABLE = glue(
"categorical = report_dis-law_fte;
usevar = report_dis-law_fte;
classes = c({k}); "),
ANALYSIS =
"estimator = mlr;
type = mixture;
starts = 500 100;
processors = 10;",
OUTPUT = "sampstat residual tech11 tech14;",
PLOT =
"type = plot3;
series = report_dis-law_fte(*);",
usevariables = colnames(df_bully),
rdata = df_bully)
lca_enum_fit <- mplusModeler(lca_enum,
dataout=glue(here("enum", "bully.dat")),
modelout=glue(here("enum", "c{k}_bully.inp")) ,
check=TRUE, run = TRUE, hashfilename = FALSE)
})
```
**IMPORTANT**: Before moving forward, make sure to open each output document to ensure models were estimated normally.
------------------------------------------------------------------------
## Examine and extract Mplus files
Code by Delwin Carter (2025)
Check all Models for:
1. Warnings
2. Errors
3. Convergence and Loglikelihood Replication Information
```{r}
source(here("functions", "extract_mplus_info.R"))
# Define the directory where all of the .out files are located.
output_dir <- here("enum")
# Get all .out files
output_files <- list.files(output_dir, pattern = "\\.out$", full.names = TRUE)
# Process all .out files into one dataframe
final_data <- map_dfr(output_files, extract_mplus_info_extended)
# Extract Sample_Size from final_data
sample_size <- unique(final_data$Sample_Size)
```
### Examine Mplus Warnings
Here are some of the warnings for the enumeration models for each output file corresponding to class solution.
```{r}
source(here("functions", "extract_warnings.R"))
warnings_table <- extract_warnings(final_data)
warnings_table
# Save the warnings table
#gtsave(warnings_table, here("figures", "warnings_table.png"))
```
### Examine Mplus Errors
Here are the errors for the enumeration models for each output file corresponding to class solution.
```{r}
source(here("functions", "error_visualization.R"))
# Process errors
error_table_data <- process_error_data(final_data)
error_table_data
# Save the errors table
#gtsave(error_table, here("figures", "error_table.png"))
```
### Examine Convergence and Loglikelihood Replications
This table examines the convergence of each model based on loglikelihood replications.
```{r, results='asis', out.width="95%"}
source(here("functions", "summary_table.R"))
# Print Table with Superheader & Heatmap
summary_table <- create_flextable(final_data, sample_size)
summary_table
# Save the flextable as a PNG image
#invisible(save_as_image(summary_table, path = here("figures", "housekeeping.png")))
```
### Check for Loglikelihood Replication
Visualize and examine loglikelihood replication values for each ouput file individually
```{r, , results='asis'}
# Load the function for separate plots
source(here("functions", "ll_replication_plots.R"))
# Generate individual log-likelihood replication tables
ll_replication_tables <- generate_ll_replication_plots(final_data)
ll_replication_tables
```
Optionally, visualize and examine loglikelihood replication for each output file together.
```{r}
ll_replication_table_all <- source(here("functions", "ll_replication_processing.R"), local = TRUE)$value
ll_replication_table_all
```
```{r, echo=FALSE}
# Save the flextable as a PNG image
#invisible(save_as_image(ll_replication_table_all, path = here("figures", "ll_replication_table_all.png")))
```
{style=" width="500"}
------------------------------------------------------------------------
## Table of Fit
First, extract data:
```{r}
output_enum <- readModels(here("enum"), filefilter = "bully", quiet = TRUE)
# Extract fit indices
enum_extract <- LatexSummaryTable(
output_enum,
keepCols = c(
"Title",
"Parameters",
"LL",
"BIC",
"aBIC",
"BLRT_PValue",
"T11_VLMR_PValue",
"Observations"
),
sortBy = "Title"
)
# Calculate additional fit indices
allFit <- enum_extract %>%
mutate(CAIC = -2 * LL + Parameters * (log(Observations) + 1)) %>%
mutate(AWE = -2 * LL + 2 * Parameters * (log(Observations) + 1.5)) %>%
mutate(SIC = -.5 * BIC) %>%
mutate(expSIC = exp(SIC - max(SIC))) %>%
mutate(BF = exp(SIC - lead(SIC))) %>%
mutate(cmPk = expSIC / sum(expSIC)) %>%
dplyr::select(Title, Parameters, LL, BIC, aBIC, CAIC, AWE, BLRT_PValue, T11_VLMR_PValue, BF, cmPk) %>%
arrange(Parameters)
# Merge columns with LL replications and class size from `final_data`
merged_table <- allFit %>%
mutate(Title = str_trim(Title)) %>%
left_join(
final_data %>%
select(
Class_Model,
Perc_Convergence,
Replicated_LL_Perc,
Smallest_Class,
Smallest_Class_Perc
),
by = c("Title" = "Class_Model")
) %>%
mutate(Smallest_Class = coalesce(Smallest_Class, final_data$Smallest_Class[match(Title, final_data$Class_Model)])) %>%
relocate(Perc_Convergence, Replicated_LL_Perc, .after = LL) %>%
mutate(Smallest_Class_Combined = paste0(Smallest_Class, "\u00A0(", Smallest_Class_Perc, "%)")) %>%
select(
Title,
Parameters,
LL,
Perc_Convergence,
Replicated_LL_Perc,
BIC,
aBIC,
CAIC,
AWE,
T11_VLMR_PValue,
BLRT_PValue,
Smallest_Class_Combined,
BF,
cmPk
)
```
Then, create table:
```{r}
fit_table1 <- merged_table %>%
select(Title, Parameters, LL, Perc_Convergence, Replicated_LL_Perc,
BIC, aBIC, CAIC, AWE,
T11_VLMR_PValue, BLRT_PValue,
Smallest_Class_Combined) %>%
gt() %>%
tab_header(title = md("**Model Fit Summary Table**")) %>%
tab_spanner(label = "Model Fit Indices", columns = c(BIC, aBIC, CAIC, AWE)) %>%
tab_spanner(label = "LRTs", columns = c(T11_VLMR_PValue, BLRT_PValue)) %>%
tab_spanner(label = md("Smallest\u00A0Class"), columns = c(Smallest_Class_Combined)) %>%
cols_label(
Title = "Classes",
Parameters = md("Par"),
LL = md("*LL*"),
Perc_Convergence = "% Converged",
Replicated_LL_Perc = "% Replicated",
BIC = "BIC",
aBIC = "aBIC",
CAIC = "CAIC",
AWE = "AWE",
T11_VLMR_PValue = "VLMR",
BLRT_PValue = "BLRT",
Smallest_Class_Combined = "n (%)"
) %>%
tab_footnote(
footnote = md(
"*Note.* Par = Parameters; *LL* = model log likelihood;
BIC = Bayesian information criterion;
aBIC = sample size adjusted BIC; CAIC = consistent Akaike information criterion;
AWE = approximate weight of evidence criterion;
BLRT = bootstrapped likelihood ratio test p-value;
VLMR = Vuong-Lo-Mendell-Rubin adjusted likelihood ratio test p-value;
*cmPk* = approximate correct model probability."
),
locations = cells_title()
) %>%
tab_options(column_labels.font.weight = "bold") %>%
fmt_number(
columns = c(3, 6:9),
decimals = 2
) %>%
sub_missing(1:11,
missing_text = "--") %>%
fmt(
c(T11_VLMR_PValue, BLRT_PValue),
fns = function(x)
ifelse(x < 0.001, "<.001",
scales::number(x, accuracy = .01))
) %>%
fmt_percent(
columns = c(Perc_Convergence, Replicated_LL_Perc),
decimals = 0,
scale_values = FALSE
) %>%
cols_align(align = "center", columns = everything()) %>%
tab_style(
style = list(cell_text(weight = "bold")),
locations = list(
cells_body(columns = BIC, row = BIC == min(BIC)),
cells_body(columns = aBIC, row = aBIC == min(aBIC)),
cells_body(columns = CAIC, row = CAIC == min(CAIC)),
cells_body(columns = AWE, row = AWE == min(AWE)),
cells_body(columns = T11_VLMR_PValue,
row = ifelse(T11_VLMR_PValue < .05 & lead(T11_VLMR_PValue) > .05, T11_VLMR_PValue < .05, NA)),
cells_body(columns = BLRT_PValue,
row = ifelse(BLRT_PValue < .05 & lead(BLRT_PValue) > .05, BLRT_PValue < .05, NA))
)
)
fit_table1
```
------------------------------------------------------------------------
Save table
```{r, eval = FALSE}
gtsave(fit_table1, here("figures", "fit_table.png"))
```
------------------------------------------------------------------------
## Information Criteria Plot
Below shows a Scree plot of AWE, CAIC, BIC, and aBIC summary statistics for each latent class solution.
```{r height=3, width=5}
allFit %>%
dplyr::select(2:7) %>%
rowid_to_column() %>%
pivot_longer(`BIC`:`AWE`,
names_to = "Index",
values_to = "ic_value") %>%
mutate(Index = factor(Index,
levels = c ("AWE", "CAIC", "BIC", "aBIC"))) %>%
ggplot(aes(
x = rowid,
y = ic_value,
color = Index,
shape = Index,
group = Index,
lty = Index
)) +
geom_point(size = 2.0) + geom_line(linewidth = .8) +
scale_x_continuous(breaks = 1:nrow(allFit)) +
scale_colour_grey(end = .5) +
theme_cowplot() +
labs(x = "Number of Classes", y = "Information Criteria Value", title = "Information Criteria") +
theme(
text = element_text(family = "serif", size = 12),
legend.text = element_text(family="serif", size=12),
legend.key.width = unit(3, "line"),
legend.title = element_blank(),
legend.position = "top"
)
```
------------------------------------------------------------------------
Save figure
```{r, eval = FALSE}
ggsave(here("figures", "info_criteria.png"), dpi=300, height=5, width=7, units="in")
```
------------------------------------------------------------------------
## Compare Class Solutions
Compare probability plots for $K = 1:6$ class solutions
```{r}
model_results <- data.frame()
for (i in 1:length(output_enum)) {
temp <- output_enum[[i]]$parameters$probability.scale %>%
mutate(model = paste(i, "-Class Model"))
model_results <- rbind(model_results, temp)
}
rm(temp)
compare_plot <- model_results %>%
filter(category == 2) %>%
dplyr::select(est, model, LatentClass, param) %>%
mutate(param = as.factor(str_to_lower(param)),
est = as.numeric(est))
compare_plot$param <- fct_inorder(compare_plot$param)
ggplot(
compare_plot,
aes(
x = param,
y = est,
color = LatentClass,
shape = LatentClass,
group = LatentClass,
lty = LatentClass
)
) +
geom_point() +
geom_line() +
scale_colour_viridis_d() +
ylim(0,1) +
facet_wrap( ~ model, ncol = 2) +
labs(title = "Bullying Items", x = NULL, y = "Probability") +
theme_minimal() +
theme(panel.grid.major.y = element_blank(),
axis.text.x = element_text(angle = -45, hjust = -.1))
```
------------------------------------------------------------------------
Save figure:
```{r, eval = FALSE}
ggsave(here("figures", "compare_kclass_plot.png"), dpi=300, height=5, width=7, units="in")
```
<div style="text-align: center;"><img src="images/ucsb_logo.png" width="75%" /></div>