Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
palday committed Mar 20, 2024
1 parent 48f53d2 commit fd2b9c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/mixedmodels.jl
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using DataFrames
using Effects
using MixedModels
using Random
using StableRNGs
using Suppressor
using Test

rng = MersenneTwister(0)
rng = StableRNG(42)
x = rand(rng, 100)
data = (x = x, x2 = 1.5 .* x, y = rand(rng, [0,1], 100), z = repeat('A':'T', 5))
model = @suppress fit(MixedModel, @formula(y ~ x + x2 + (1|z)), data; progress=false)
Expand Down

0 comments on commit fd2b9c4

Please sign in to comment.