You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our team uses bookdown to compile sets of .Rmds to a static site to host a central versions of the analysis. One thing our stakeholders are invested in is an interactive table in these sites. We achieve this in R using DT, and I've discovered I can get the same results using jupyter-book + itables.
In the attempt to convert to Julia, I used ipynbs and TableView.jl. TableView.jl works great in the live Jupyter session, but when I compile to HTML, the resulting pages contains the error message that WebIO isn't detected and refers me to the help page. I complete the checks and find that the correct extensions are installed, which isn't surprising because it works really well in the live session.
I then attempted a series of workarounds described in this thread before coming to the conclusion that I can't write in Julia (at least in ipynb) and use PyCall or RCall in one cell to get the table into the compiled book.
I'd be willing to try to figure out how to write something on top of WebIO that would work in the live session and also be in the HTML but wanted to make sure this was theoretically possible before doing so.
Thank you for your time!
The text was updated successfully, but these errors were encountered:
I am attempting to move an R workflow to Julia.
Our team uses
bookdown
to compile sets of.Rmd
s to a static site to host a central versions of the analysis. One thing our stakeholders are invested in is an interactive table in these sites. We achieve this in R using DT, and I've discovered I can get the same results usingjupyter-book
+ itables.In the attempt to convert to Julia, I used
ipynb
s andTableView.jl
.TableView.jl
works great in the live Jupyter session, but when I compile to HTML, the resulting pages contains the error message thatWebIO
isn't detected and refers me to the help page. I complete the checks and find that the correct extensions are installed, which isn't surprising because it works really well in the live session.I then attempted a series of workarounds described in this thread before coming to the conclusion that I can't write in Julia (at least in
ipynb
) and usePyCall
orRCall
in one cell to get the table into the compiled book.I'd be willing to try to figure out how to write something on top of
WebIO
that would work in the live session and also be in the HTML but wanted to make sure this was theoretically possible before doing so.Thank you for your time!
The text was updated successfully, but these errors were encountered: