Math, Python & Julia
Math, Python & Julia
The above [issue](https://github.com/JuliaLang/IJulia.jl/issues/1002) related to IJulia with Julia 1.16+ is not real. IJulia works on both Windows 10 and Ubuntu 18.04
On my own it works :)
@LunarLanding `title` is a dict: ``` import plotly.graph_objects as go fig = go.Figure( data=go.Bar(y=[2,3,1]), layout={'title': {'text': '$a_b$', 'x':0.5}}) fig.show(config={'responsive':True}); ``` or you can avoid using dicts, as follows: ``` fig...
I read only your post and did not notice that you are working with jupyterlab. I checked it in Jupyter Notebook: 
- If your frame does not change the marker size, then it inherits the marker size from your fig.data[0]. To get markers of size different from that in `fig.data[0]` you...
No, if you have n traces, you have to add just one dummy trace, defined exactly I defined it in your case, but the drawback is that you must know...
@robert-lieck When I ran your initial code no marker was displayed from a slider step to another. I corrected that issue, and with my code each frame displays the added...
@nicolaskruchten The same trick, in the case of a disapearing trace, has been pointed out in [https://github.com/plotly/plotly.py/issues/2423](https://github.com/plotly/plotly.py/issues/2423). Then, such a case was inserted in a wishlist. Although no special example...
@etpinard The animation in this pen [https://codepen.io/etpinard/pen/bGdBWJq](https://codepen.io/etpinard/pen/bGdBWJq), that uses v1.36.0 , displays the Bars only in the first frame. It should display them in all frames.
@alexcjohnson Thanks for this simple solution to round the corners. @Jonathan-MW I updated this notebook [https://plot.ly/~empet/14945](https://plot.ly/~empet/14945) defining the path like in the above pen.