You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using Tables
using MixedModels
using CSVFiles
const GLMM = GeneralizedLinearMixedModel
data = load("ICARdata.csv") |> Tables.rows
regression = @formula(SEI ~ Age + Total + Sex + (1 | Education))
model = fit(GLMM, regression, data, Normal, LogitLink)
Results in:
The text was updated successfully, but these errors were encountered: