-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComputer_Project-SEM.R
More file actions
408 lines (315 loc) · 7.64 KB
/
Copy pathComputer_Project-SEM.R
File metadata and controls
408 lines (315 loc) · 7.64 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
library(readr)
library(tidyr)
library(corrplot)
library(tidyverse)
library(psych)
library(lavaan)
library(semPlot)
library(semTools)
####Clean data####--------------------------------------------------------------
#Data contains stats from all matches every player has played. To analyze overall ability,
#conversion to overall stars firstly has to be performed.
nba <- read_delim("NBA_data_CI-course.csv",
delim = ";", escape_double = FALSE, trim_ws = TRUE)
View(nba)
#Selecting variables for cfa
nba2 <- nba %>%
select(Player, PTS, `FG%`, `3P%`, AST,
ORB, FT, STL, BLK, DRB, TRB, TOV)
#Creating overall stats for players, rounded to 3 decimals
nba_player <- nba2 %>%
group_by(Player) %>%
summarise(
PTS = round(mean(PTS, na.rm = TRUE), 3),
goal_procent = round(mean(`FG%`, na.rm = TRUE), 3),
threeP_procent = round(mean(`3P%`, na.rm = TRUE), 3),
AST = round(mean(AST, na.rm = TRUE), 3),
ORB = round(mean(ORB, na.rm = TRUE), 3),
FT = round(mean(FT, na.rm = TRUE), 3),
STL = round(mean(STL, na.rm = TRUE), 3),
BLK = round(mean(BLK, na.rm = TRUE), 3),
DRB = round(mean(DRB, na.rm = TRUE), 3),
TRB = round(mean(TRB, na.rm = TRUE), 3),
TOV = round(mean(TOV, na.rm = TRUE), 3)
)
View(nba_player)
colSums(is.na(nba_player))
####Descriptive statistics####--------------------------------------------------
#We select all except the player variable
describe(nba_player %>% select(-Player))
# Correlation matrix
cor_matrix <- cor(
nba_player %>% select(-Player),
use = "pairwise.complete.obs")
round(cor_matrix, 2)
corrplot(
cor_matrix,
method = "color",
type = "upper",
addCoef.col = "black",
tl.col = "black",
number.cex = 0.7)
nba_scaled <- nba_player %>%
mutate(across(-Player, scale))
####First model####-------------------------------------------------------------
model1 <- '
Offense =~ PTS + AST + FT
Defense =~ STL + BLK + DRB + TRB
# correlated residuals
PTS ~~ FT'
#We use fiml as method to deal with missing values and MLR as robust estimator
fit1 <- cfa(
model1,
data = nba_player,
estimator = "MLR",
missing = "fiml"
)
summary(
fit1,
fit.measures = TRUE,
standardized = TRUE
)
semPaths(
fit1,
what = "std",
layout = "tree",
residuals = FALSE,
intercepts = FALSE,
edge.label.cex = 1.1,
sizeLat = 8,
sizeMan = 7,
nCharNodes = 0,
curvePivot = TRUE,
style = "lisrel",
rotation = 1
)
####Revised model####-----------------------------------------------------------
model2 <- '
Off_inv =~ PTS + AST + FT + TOV
Interior =~ ORB + BLK + DRB
AST ~~ TOV
PTS ~~ FT
ORB ~~ BLK
Interior ~ Off_inv
'
#We use fiml as method to deal with missing values and MLR as robust estimator
fit2 <- cfa(
model2,
data = nba_scaled,
estimator = "MLR",
missing = "fiml"
)
summary(
fit2,
fit.measures = TRUE,
standardized = TRUE
)
modindices(fit, sort = TRUE, minimum.value = 10)
reliability(fit)
semPaths(
fit2,
what = "std",
layout = "tree",
residuals = FALSE,
intercepts = FALSE,
edge.label.cex = 1.1,
sizeLat = 8,
sizeMan = 7,
nCharNodes = 0,
curvePivot = TRUE,
style = "lisrel",
rotation = 1
)
####Cornbach alpha####----------------------------------------------------------
alpha(nba_player[, c("PTS","AST","FT")])
alpha(nba_player[, c("STL","BLK","DRB","TRB")])
alpha(nba_player[, c("PTS","AST","FT","TOV")])
alpha(nba_player[, c("ORB","BLK","DRB")])
####unclear if we need#####-----------------------------------------------------------------
scores <- lavPredict(fit)
head(scores)
player_scores <- as.data.frame(scores) %>%
mutate(Player = nba_player$Player) %>%
select(Player, Off_inv, Interior)
colnames(player_scores) <- c("Player", "Off_inv", "Interior")
player_scores %>%
arrange(desc(Off_inv))
player_scores %>%
arrange(desc(Interior))
#### Rookies vs Veterans Analysis ####-----------------------------------------
# The original dataset does not contain a rookie/veteran variable.
# Therefore, we manually create a list of rookie players.
rookie_names <- c(
"Zaccharie Risacher",
"Alexandre Sarr",
"Reed Sheppard",
"Stephon Castle",
"Ron Holland",
"Tidjane Salaun",
"Donovan Clingan",
"Rob Dillingham",
"Zach Edey",
"Cody Williams",
"Matas Buzelis",
"Dalton Knecht",
"Jared McCain",
"Yves Missi",
"Kel'el Ware",
"Carlton Carrington",
"Tristan da Silva",
"Jaylon Tyson",
"Kyshawn George",
"Isaiah Collier",
"Ryan Dunn",
"Tyler Kolek",
"Kyle Filipowski",
"Baylor Scheierman"
)
rookie_names
# Adding rookie/veterans as classification:
nba_player <- nba_player %>%
mutate(
Rookie_Binary = ifelse(Player %in% rookie_names, 1, 0),
Experienced_Group = ifelse(Rookie_Binary == 1, "Rookie", "Veteran")
)
View(nba_player)
table(nba_player$Rookie_Binary)
table(nba_player$Experienced_Group)
# Create SEM data for Multi-group CFA:
cfa_data <- nba_player %>%
select(
Player,
PTS, AST, FT, TOV,
ORB, BLK, DRB,
Rookie_Binary,
Experienced_Group
)
cfa_data_scaled <- cfa_data %>%
mutate(
across(
c(PTS, AST, FT, TOV, ORB, BLK, DRB),
~ as.numeric(scale(.))
)
)
View(cfa_data_scaled)
#CFA model specification
model <- '
Off_inv =~ PTS + AST + FT + TOV
Interior =~ ORB + BLK + DRB
AST ~~ TOV
PTS ~~ FT
ORB ~~ BLK
'
#Configural invariance model
fit_configural <- cfa(
model,
data = cfa_data_scaled,
group = "Experienced_Group",
estimator = "MLR",
missing = "fiml",
meanstructure = TRUE
)
summary(
fit_configural,
fit.measures = TRUE,
standardized = TRUE
)
# Check for negative variances
parameterEstimates(fit_configural) %>%
subset(op == "~~" & lhs == rhs)
#Metric invariance model
fit_metric <- cfa(
model,
data = cfa_data_scaled,
group = "Experienced_Group",
estimator = "MLR",
missing = "fiml",
meanstructure = TRUE,
group.equal = c("loadings")
)
summary(
fit_metric,
fit.measures = TRUE,
standardized = TRUE
)
#Scalar invariance model
fit_scalar <- cfa(
model,
data = cfa_data_scaled,
group = "Experienced_Group",
estimator = "MLR",
missing = "fiml",
meanstructure = TRUE,
group.equal = c("loadings", "intercepts")
)
summary(
fit_scalar,
fit.measures = TRUE,
standardized = TRUE
)
#Residual invariance model
fit_residual <- cfa(
model,
data = cfa_data_scaled,
group = "Experienced_Group",
estimator = "MLR",
missing = "fiml",
meanstructure = TRUE,
group.equal = c("loadings", "intercepts", "residuals")
)
summary(
fit_residual,
fit.measures = TRUE,
standardized = TRUE
)
# Compare all models:
lavTestLRT(
fit_configural,
fit_metric,
fit_scalar,
fit_residual
)
# Make a fit-index table:
# Fit Indices table:
fit_indices <- rbind(
Configural = fitMeasures(
fit_configural,
c("chisq", "df", "pvalue", "cfi", "rmsea", "srmr", "aic", "bic")
),
Metric = fitMeasures(
fit_metric,
c("chisq", "df", "pvalue", "cfi", "rmsea", "srmr", "aic", "bic")
),
Scalar = fitMeasures(
fit_scalar,
c("chisq", "df", "pvalue", "cfi", "rmsea", "srmr", "aic", "bic")
),
Residual = fitMeasures(
fit_residual,
c("chisq", "df", "pvalue", "cfi", "rmsea", "srmr", "aic", "bic")
)
)
round(fit_indices, 3)
# Test Equality of latent means:
fit_scalar_equal_means <- cfa(
model,
data = cfa_data_scaled,
group = "Experienced_Group",
estimator = "MLR",
missing = "fiml",
meanstructure = TRUE,
group.equal = c("loadings", "intercepts", "means")
)
lavTestLRT(
fit_scalar,
fit_scalar_equal_means
)
# Extracting latent mean estimates:
pe_scalar <- parameterEstimates(fit_scalar)
latent_means <- pe_scalar %>%
subset(
op == "~1" &
lhs %in% c("Off_inv", "Interior")
) %>%
select(lhs, group, est, se, z, pvalue)
latent_means