OK, after 3 or 4 unsatisfactory interactions with the editorial management system, the review has been sent by e-mail.
If that doesn't work, well, what a pity...
There is now a #JuliaLang backend for #stata
https://github.com/droodman/julia.ado
https://arxiv.org/pdf/2404.09309
I can now create interactive PlotlyJS graphics directly from Stata:
sysuse auto
jl save auto
jl: using PlotlyJS
jl: trace1 = PlotlyJS.scatter3d(z=auto.price, x=auto.mpg, y=auto.weight)
jl: savefig(PlotlyJS.plot(trace1), "pjstest.html")