Update deprecated column deletion syntax

develop
parent 610c80e7c9
commit 9b181d251c
Signed by: millironx
GPG Key ID: 139C07724802BC5D

@ -74,8 +74,8 @@ fixedfx = select(data, Not([:id, :birthdate, :sire, :dam]))[:,1:end-1]
# Find any columns that need to be deleted
for i in 1:ncol(fixedfx)
if length(unique(fixedfx[:,i])) <= 1
@warn string("column '", names(fixedfx[i]), "' does not have any unique animals and will be removed from this analysis")
deletecols!(fixedfx,i)
@warn string("column '", names(fixedfx)[i], "' does not have any unique animals and will be removed from this analysis")
select!(fixedfx,Not(i))
end
end

Loading…
Cancel
Save