-
With quarto, it is possible to generate tables with R or Python. Is there also a way to generate tables with Julia? I've tried using PrettyTables.jl and producing an output in markdown format. However, the output is not correctly interpreted by Quarto, even note wenn setting "output: asis". |
Beta Was this translation helpful? Give feedback.
Answered by
cderv
Apr 12, 2023
Replies: 3 comments 10 replies
-
I found a solution. It does not work with PrettyTables.jl but with Tables.jl and MarkdownTables.jl. It follows a code example:
|
Beta Was this translation helpful? Give feedback.
5 replies
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think this is because
JuliaCall
R package does not handle the default output ofmarkdown_table
which is a Mime type outputingDisplayAs.Raw.Showable
object.JuliaCall is the package called by knitr when Julia chunk are used, and knitr handles the output based on the method defined by this tool.
You can make the above works with knitr by outputing a Markdown table as string and using
output: asis