Synthetic longitudinal binary relational data, list-form (latent-scale)
Source:R/data.R
YX_bin_list.RdThe list-form sibling of YX_bin_long: same synthetic
4-period 50-actor panel reshaped from arrays to lists. The shipped
Y entries hold the latent probit-scale predictor
(range roughly -20 to 17), not 0/1 ties. To recover the binary tie
indicator the dataset name implies, threshold at zero, e.g.
Y_bin <- lapply(YX_bin_list$Y, function(Yt) 1 * (Yt > 0)).
If passed unthresholded to lame(..., family = "binary") the
fit will warn and silently apply the same Y > 0 threshold.