Skip to content

Commit

Permalink
Update xlsout.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
mwsohn committed Jul 20, 2024
1 parent 827a328 commit ba8cf8f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/xlsout.jl
Original file line number Diff line number Diff line change
Expand Up @@ -357,9 +357,12 @@ function glmxls(glmout,
col = 0,
robust = nothing)

using PyCall

xlsxwriter = pyimport("xlsxwriter")
wb = xlsxwriter.Workbook(wbook)

glmxls(glmout,xlsxwriter.Workbook(wbook),wsheet,labels=labels,eform=eform,ci=ci,row=row,col=col,robust=robust)
glmxls(glmout,wb,wsheet;labels=labels,eform=eform,ci=ci,row=row,col=col,robust=robust,adjust=adjust)
end


Expand Down

0 comments on commit ba8cf8f

Please sign in to comment.