How to obtain the pvalues of the coefficients in GLM.jl?

Well, I understand that if you the following command

coeftable(mdl).cols[4]

you will have limited option to use those as they are in StatsBase.
If you try this (may not be very efficient), it works better

a = coeftable(model).cols[4]
pVals = [ a[i].v for i in 1:length(a) ]

Hope it helps
Ebby

1 Like