Ask Your Question

jguzman's profile - activity

2015-05-19 19:27:14 +0200 commented answer In-line graphics for Sage in ipython notebook?

Fantastic!!!! tested in Sage 6.7, it works like a charm!

2015-05-19 14:04:18 +0200 received badge  Editor (source)
2015-05-19 13:53:58 +0200 commented answer In-line graphics for Sage in ipython notebook?

tested with Sage 6.7

2015-05-19 13:53:17 +0200 answered a question In-line graphics for Sage in ipython notebook?

The link points to my website, which I recently updated. The only way I found at the moment to plot inline was to enter this in the IPython notebook:

 %load_ext sage
 from IPython.display import display, Image
 x = var('x')
 plot(sin(x), 0, 2*pi, figsize=4).save('/tmp/foo.png')
 display(Image('/tmp/foo.png')