mirror of
https://github.com/MillironX/beefblup.git
synced 2024-11-14 11:33:10 +00:00
Add basic test for correct fixed effect matrix
This commit is contained in:
parent
181819db28
commit
141cf56b07
1 changed files with 4 additions and 0 deletions
|
@ -1,6 +1,10 @@
|
||||||
using BeefBLUP
|
using BeefBLUP
|
||||||
|
using DataFrames
|
||||||
using Test
|
using Test
|
||||||
|
|
||||||
@testset "BeefBLUP.jl" begin
|
@testset "BeefBLUP.jl" begin
|
||||||
# Write your tests here.
|
# Write your tests here.
|
||||||
|
correctX = [1 1 0 0; 1 1 0 1; 1 0 1 0; 1 0 1 1; 1 0 1 0; 1 0 1 1; 1 0 0 0]
|
||||||
|
fixedfx = DataFrame(year = [1990, 1990, 1991, 1991, 1991, 1991, 1992], sex = ["male", "female", "male", "female", "male", "female", "male"])
|
||||||
|
@test BeefBLUP.fixedeffectmatrix(fixedfx)[1] == correctX
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue