Skip to content

Commit

Permalink
Update mglmxls.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
mwsohn committed Oct 5, 2024
1 parent 26b9211 commit a7ef8c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mglmxls.jl
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ function mglmxls(glmout,


# estimates
ret = ri <= npred[j] ? tdata[j].cols[1][ri] : ""
ret = ri <= npred[j] ? tdata[j].cols[1][ri] : NaN
if eform == true
t.write(r,c+1,exp(ret),formats[:or_fmt])
else
Expand All @@ -296,8 +296,8 @@ function mglmxls(glmout,

if ci == true

retlo = ri <= npred[j] ? exp(tconfint[j][ri,1]) : ""
rethi = ri <= npred[j] ? exp(tconfint[j][ri,2]) : ""
retlo = ri <= npred[j] ? tconfint[j][ri,1] : NaN
rethi = ri <= npred[j] ? tconfint[j][ri,2] : NaN
if eform == true

# 95% CI Lower
Expand Down

0 comments on commit a7ef8c3

Please sign in to comment.