Re[2]: Re[2]: [sympy] Sympy plotting module save figure as svg string

2022-11-21 Thread Антон Макаров
Thanks, i’ve already solve the problem… Отправлено из мобильной Почты Mail.ru понедельник, 21 ноября 2022 г., 19:52 +0300 от oscar.j.benja...@gmail.com : >I don't know how you get the handle to the matplotlib figure but there >should be some way to do it. > >On Mon, 21 Nov 2022 at 14:01,

Re: Re[2]: [sympy] Sympy plotting module save figure as svg string

2022-11-21 Thread Oscar Benjamin
I don't know how you get the handle to the matplotlib figure but there should be some way to do it. On Mon, 21 Nov 2022 at 14:01, Антон Макаров wrote: > > Thank you for answer. As far as I can understand the p1 variable in my sample > code is the object of mathplotlib library, right? > > > >

Re[2]: [sympy] Sympy plotting module save figure as svg string

2022-11-21 Thread Антон Макаров
Thank you for answer. As far as I can understand the p1 variable in my sample code is the object of mathplotlib library, right? Отправлено из мобильной Почты Mail.ru понедельник, 21 ноября 2022 г., 16:51 +0300 от oscar.j.benja...@gmail.com : >SymPy's save function is just using matplotlib

Re: [sympy] Sympy plotting module save figure as svg string

2022-11-21 Thread Oscar Benjamin
SymPy's save function is just using matplotlib so the question is not really about SymPy but about matplotlib: https://stackoverflow.com/questions/5453375/matplotlib-svg-as-string-and-not-a-file Oscar On Mon, 21 Nov 2022 at 10:57, Anton Makarov wrote: > > Hi, i need to save figure from svg

[sympy] Sympy plotting module save figure as svg string

2022-11-21 Thread Anton Makarov
Hi, i need to save figure from svg plotting module as svg string in order to insert it latter in my web application. At the moment i can only save plot as svg file: from sympy import symbols from sympy.plotting import plot x = symbols('x') p1 = plot(x, x**2, x**3, (x, 0, 6), show = False)

Re: [sympy] Plotting module

2021-05-04 Thread Oscar Benjamin
On Tue, 4 May 2021 at 18:00, Davide Sandona' wrote: >> >> Thank you for sharing. Do you think this is something you'd like to >> see integrated into SymPy's plotting module eventually? > > I think it would benefit a lot of users, but it's too soon to talk about > integration because I'm still

Re: [sympy] Plotting module

2021-05-04 Thread Nicolas Guarin
This is great and the quality of the 3D plots is incredible. Regarding the backends, did you try PyVista? That one is also based on VTK and it works nicely in MyBinder. Nicolás On Tuesday, May 4, 2021 at 12:00:25 PM UTC-5 sandona...@gmail.com wrote: > Thank you for sharing. Do you think this

Re: [sympy] Plotting module

2021-05-04 Thread Davide Sandona'
> > Thank you for sharing. Do you think this is something you'd like to > see integrated into SymPy's plotting module eventually? > I think it would benefit a lot of users, but it's too soon to talk about integration because I'm still thinking about what needs to be added and what needs to be

Re: [sympy] Plotting module

2021-05-03 Thread Aaron Meurer
Also I would suggest setting up some sort of Binder for the notebooks so that people can try this out without having to install everything. Aaron Meurer On Mon, May 3, 2021 at 4:40 PM Aaron Meurer wrote: > > Thank you for sharing. Do you think this is something you'd like to > see integrated

Re: [sympy] Plotting module

2021-05-03 Thread Aaron Meurer
Thank you for sharing. Do you think this is something you'd like to see integrated into SymPy's plotting module eventually? Aaron Meurer On Mon, May 3, 2021 at 3:18 PM sandona...@gmail.com wrote: > > Hello everyone, > > I created a slightly improved plotting module for SymPy, which can be found

[sympy] Plotting module

2021-05-03 Thread sandona...@gmail.com
Hello everyone, I created a slightly improved plotting module for SymPy, which can be found at the following location [1]. It supports different plotting libraries (Plotly, Bokeh, K3D, Mayavi) and, most importantly, we can easily create widgets-interactive plots to explore parametric symbolic

Re: [sympy] Plotting Module for Sympy

2014-01-21 Thread Nitin Agarwal
can get this work done as I am aware of this module. I would like to start working on improving the Plotting module and integrate with the existing Sympy Plotting Module. One can also contact me on IRC : nitinagarwal3006 at Freenode or github : https://github.com/NitinAgarwal On 17

Re: [sympy] Plotting Module for Sympy

2014-01-19 Thread Stefan Krastanov
Sympy Gamma and Sympy are not the same thing. Sympy has a plotting module that can use multiple backends, but only the matplotlib backend is mature enough (and the only one provided with sympy besides a small text-based backend). There is an example d3js backend but it is far from ready for use.