[sage-support] Re: Seaborn in sage

2016-07-27 Thread Laurent Decreusefond
My version is on El Capitan 10.11.6 Le mercredi 27 juillet 2016 22:08:55 UTC+2, leif a écrit : > > Laurent Decreusefond wrote: > > Thanks to your remarks, I realized that I had an old beta-version of > > Xcode (7.1) which was in conflict with the actual version (7.3.1). I > > relaunched the

[sage-support] Re: Issue Displaying 3D Images in SageCell

2016-07-27 Thread Andrey Novoseltsev
On Thursday, 14 July 2016 08:41:26 UTC-6, Andrey Novoseltsev wrote: > > On Thursday, 14 July 2016 08:30:18 UTC-6, Ingo Dahn wrote: >> >> Further Info: I tested it with Chrome under Win 10 and it doesn't work >> with a local page. The page on the SageCell site IS working. But when I >> copy this

[sage-support] Re: Seaborn in sage

2016-07-27 Thread leif
Laurent Decreusefond wrote: > Thanks to your remarks, I realized that I had an old beta-version of > Xcode (7.1) which was in conflict with the actual version (7.3.1). I > relaunched the install with the correct version of Xcode and everything > went smoothly. Thanks for your answers. Oh,

[sage-support] Re: Seaborn in sage

2016-07-27 Thread leif
Laurent Decreusefond wrote: > I will try this one since I'm already working on a fresh, compiled from > source, version of Sage. If you have Sage's GCC built on *your* system, the issue with movq will disappear (since GCC checks exactly that feature of the assembler at its *build* time). But you

[sage-support] Re: Seaborn in sage

2016-07-27 Thread Laurent Decreusefond
Thanks to your remarks, I realized that I had an old beta-version of Xcode (7.1) which was in conflict with the actual version (7.3.1). I relaunched the install with the correct version of Xcode and everything went smoothly. Thanks for your answers. Le mercredi 27 juillet 2016 20:46:40 UTC+2,

[sage-support] Re: Seaborn in sage

2016-07-27 Thread Laurent Decreusefond
I will try this one since I'm already working on a fresh, compiled from source, version of Sage. Le mercredi 27 juillet 2016 19:45:55 UTC+2, leif a écrit : > > Dima Pasechnik wrote: > > errors like you get: > > > > > > /var/folders/md/71gv03bs6mx4qxg933r_k_x4gn/T//ccSLsnmg.s:984:suffix

[sage-support] Re: Seaborn in sage

2016-07-27 Thread leif
Nathan Dunfield wrote: > On Wednesday, July 27, 2016 at 3:30:47 AM UTC-5, Dima Pasechnik wrote: > > errors like you get: > > > /var/folders/md/71gv03bs6mx4qxg933r_k_x4gn/T//ccSLsnmg.s:984:suffix > or operands invalid for `movq' > > > indicate that your Sage's compiler

Re: [sage-support] how to display graph legend with colored digraph

2016-07-27 Thread Jori Mäntysalo
Quoting Ben : That is great. Now, is there someway to permanently associate those two parameters to the graph? i.e., G.show() has the colors and title? AFAIK no. You can set positions for vertices with set_pos() and you can attach an arbitrary value to a vertex like

[sage-support] Re: Seaborn in sage

2016-07-27 Thread Nathan Dunfield
On Wednesday, July 27, 2016 at 3:30:47 AM UTC-5, Dima Pasechnik wrote: > > errors like you get: > > > /var/folders/md/71gv03bs6mx4qxg933r_k_x4gn/T//ccSLsnmg.s:984:suffix or > operands invalid for `movq' > > > indicate that your Sage's compiler toolchain is broken in some way, > probably

[sage-support] Re: Seaborn in sage

2016-07-27 Thread leif
Dima Pasechnik wrote: > errors like you get: > > > /var/folders/md/71gv03bs6mx4qxg933r_k_x4gn/T//ccSLsnmg.s:984:suffix or > operands invalid for `movq' > > > indicate that your Sage's compiler toolchain is broken in some way, > probably incompatible with your hardware. > A way to fix this

Re: [sage-support] how to display graph legend with colored digraph

2016-07-27 Thread Ben
That is great. Now, is there someway to permanently associate those two parameters to the graph? i.e., G.show() has the colors and title? On Wednesday, July 27, 2016 at 2:43:17 AM UTC-4, jori.ma...@uta.fi wrote: > > On Tue, 26 Jul 2016, Ben wrote: > > > .graphplot() or .show() to do this.

[sage-support] Re: Seaborn in sage

2016-07-27 Thread Dima Pasechnik
errors like you get: /var/folders/md/71gv03bs6mx4qxg933r_k_x4gn/T//ccSLsnmg.s:984:suffix or operands invalid for `movq' indicate that your Sage's compiler toolchain is broken in some way, probably incompatible with your hardware. A way to fix this would be to build Sage from source. On

[sage-support] Is a root an accessible thing?

2016-07-27 Thread Joseph Hundley
I've been looking around in the documentation for root systems. It's not clear to me whether the individual roots in the system are accessible objects. For example, I can take the root system F4. sage: rs=RootSystem("F4") sage: r1=rs.root_lattice().positive_roots() sage:

[sage-support] Re: Seaborn in sage

2016-07-27 Thread Laurent Decreusefond
Thanks. I tried to do it in the command line on a fresh install of Sage 7.2 and I got this error message (the full log is attached) : [snip] In file included from

Re: [sage-support] how to display graph legend with colored digraph

2016-07-27 Thread Jori Mäntysalo
On Tue, 26 Jul 2016, Ben wrote: .graphplot() or .show() to do this. However, I'm having trouble displaying some kind a legend to go along with the graph to explain which colors are which properties. I'd like to display with the graph something like color1 = property A color2 = property B