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
model = fit(LinearMixedModel,
@formula(AUC ~ formulation + sequence + period + (1|subject)),
data,
contrasts = Dict(:period => EffectsCoding()))
yields MethodError: no method matching fit(::Type{LinearMixedModel}, Matrix{Float64}, Vector{Int})
The long-hand,
model = LinearMixedModel(@formula(AUC ~ formulation + sequence + period + (1|subject)),
data,
contrasts = Dict(:period => EffectsCoding()))
fit!(model)
works just fine. @dmbates, I suspect the issue is in StatsModels.jl statsmodel.jl macro, but just in case there is something at MixedModels that might be triggering it.
The text was updated successfully, but these errors were encountered:
yields
MethodError: no method matching fit(::Type{LinearMixedModel}, Matrix{Float64}, Vector{Int})
The long-hand,
works just fine.
@dmbates, I suspect the issue is in StatsModels.jl
statsmodel.jl
macro, but just in case there is something at MixedModels that might be triggering it.The text was updated successfully, but these errors were encountered: