Replies: 8 comments 5 replies
-
I'll try out the RCall example to see what might be going on with the sub-figures. In advance of this, if you add We just made a change yesterday to strip ansi codes from Jupyter stream output -- perhaps that resolves the ProgressMeter.jl issue? One other thing I'm hoping to see improved is high-resolution plots for printed output. You can see the current state of this here: JuliaLang/IJulia.jl#1035 I think either PDF figures should be made to work OR there should be an option to raise the DPI on PNG output without making the legend text smaller. |
Beta Was this translation helpful? Give feedback.
-
Attempted to repro the RCall issue but the render hangs for me on the RCall cell. My guess is though that if Jupyer is producing two plots that we can't easily overcome this (as we just literally replay the jupyter outputs as-is). If you post the ipynb I can confirm this -- in any case hopefully this is something that can be addressed in RCall. |
Beta Was this translation helpful? Give feedback.
-
@jjallaire I updated to quarto 0.9.326 and the problems with the control codes for the ProgressMeter output went away. Thanks for that - we use it to show the progress of the iterations when fitting a model and now the document contains the final summary of speed in a more-easily understood form. |
Beta Was this translation helpful? Give feedback.
-
I have revived the discussion of displaying plots from I was successful in suppressing the printing of |
Beta Was this translation helpful? Give feedback.
-
I think if you just send us a link to the ipynb within a regular Git repo we should be able to take a closer look. Unrelated note: hoping to find links to some good Julia examples for my juliacon talk: #1261. @dmbates I went looking for your mixed-effects models book but didn't find it straight away. Is that published anywhere yet? Is the source code also available? |
Beta Was this translation helpful? Give feedback.
-
The gist containing the .qmd file is https://gist.github.com/dmbates/87c56abd816045ceaad2564dbadeefcd Two "in-progress" presentations using Quarto/Julia are https://crsl4.github.io/julia-workshop/ and https://repsychling.github.io/SMLP2022/ I am about to make the repository for the book public. The link will be https://juliamixedmodels.github.io/EmbraceUncertainty once I release it into the wide world. I said "end of June" so I best get a move on. |
Beta Was this translation helpful? Give feedback.
-
The display of R graphics in a julia-based Jupyter file through RCall is seen in the first figure of https://repsychling.github.io/SMLP2022/sleepstudy.html I think what is happening is that the jupyter kernel passes an |
Beta Was this translation helpful? Give feedback.
-
I have been able to resolve the issue of having ggplot2 plots displayed in a Julia quarto document using RCall. See https://gist.github.com/dmbates/87c56abd816045ceaad2564dbadeefcd The creation of the graphics output file (an SVG file in this case) is triggered when the ggplot2 object is printed. The fix is to do the call to Resolves JuliaInterop/RCall.jl#450 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
julia
specification for code blocksnotebooks/mmt_sleepstudy.qmd
in the https://github.com/RePsychLing/SMLP2022 repository. It can probably be fixed in RCall.jl If not, I will create a stand-alone example.Beta Was this translation helpful? Give feedback.
All reactions