From cfdef8790d5f809f460d2065bf995cac531f6dd1 Mon Sep 17 00:00:00 2001 From: Matthieu Gomez Date: Wed, 8 Mar 2023 09:51:53 -0500 Subject: [PATCH] Update Project.toml (#223) * Update Project.toml * Update collinearity.jl --- test/Project.toml | 1 + test/collinearity.jl | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/test/Project.toml b/test/Project.toml index 44882ea..6168988 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -5,6 +5,7 @@ CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" FixedEffects = "c8885935-8500-56a7-9867-7708b20db0eb" LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" +Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" diff --git a/test/collinearity.jl b/test/collinearity.jl index de039ed..73da77b 100644 --- a/test/collinearity.jl +++ b/test/collinearity.jl @@ -1,4 +1,4 @@ -using DataFrames, CSV, FixedEffectModels, Random, StatsBase, Test +using DataFrames, CSV, FixedEffectModels, Random, Statistics, Test @testset "collinearity_with_fixedeffects" begin @@ -30,4 +30,4 @@ using DataFrames, CSV, FixedEffectModels, Random, StatsBase, Test @test rr.coef[1] ≈ 0.0 @test isnan(stderror(rr)[1]) -end \ No newline at end of file +end