From 5c5f2ef2b8aaa1e670629dd81ea59ca23d6e9285 Mon Sep 17 00:00:00 2001 From: xuan Date: Wed, 30 Oct 2019 20:29:11 -0500 Subject: [PATCH] rename file --- data/{glm.test.csv => rankdeficient_test.csv} | 0 test/runtests.jl | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename data/{glm.test.csv => rankdeficient_test.csv} (100%) mode change 100755 => 100644 diff --git a/data/glm.test.csv b/data/rankdeficient_test.csv old mode 100755 new mode 100644 similarity index 100% rename from data/glm.test.csv rename to data/rankdeficient_test.csv diff --git a/test/runtests.jl b/test/runtests.jl index 50d1ac47..bb3da5b1 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -158,7 +158,7 @@ end @test rank(m2.model.pp.chol) == 7 @test deviance(m2.model) ≈ 138615.90834086522 # issue about can't converge within 30 iterations discussed in PR #314 - df = CSV.read(joinpath(glm_datadir, "glm.test.csv")) + df = CSV.read(joinpath(glm_datadir, "rankdeficient_test.csv")) glmallow = fit(GeneralizedLinearModel, @formula(y~x1+x2), df, Poisson(), allowrankdeficient=true) @test isa(glmallow.model.pp.chol, CholeskyPivoted) end