We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 292b462 commit db34d60Copy full SHA for db34d60
test/missing.jl
@@ -22,14 +22,14 @@ slp[1,:U] = missing
22
# end
23
24
@testset "Missing Omit" begin
25
- @testset "Missing from unused variables"
+ @testset "Missing from unused variables" begin
26
# missing from unused variables should have no impact
27
m1 = fit(MixedModel, @formula(Y ~ 1 + (1|G)), dat[:sleepstudy])
28
m1_missing = fit(MixedModel, @formula(Y ~ 1 + (1|G)), slp)
29
@test isapprox(m1.θ, m1_missing.θ, rtol=1.0e-12)
30
end
31
32
- @testset "Missing from used variables"
+ @testset "Missing from used variables" begin
33
m1 = fit(MixedModel, @formula(Y ~ 1 + U + (1|G)), dat[:sleepstudy])
34
m1_missing = fit(MixedModel, @formula(Y ~ 1 + U + (1|G)), slp)
35
@test nobs(m1) - nobs(m1_missing) == 1
0 commit comments