Consider the following.

@interact
def _(u_percent=slider(0,1,0.05,label="<font color='red'>u</font>", 
default=.7)):
    
pretty_print(table([[plot(x^u_percent,x,0,1),plot(x^u_percent-1,x,0,1)]]))

First, there is some kind of regression with the label, where it no longer 
accepts styling - I don't know if that is known, I assume it is but thought 
I'd mention it.

More importantly, while 

    pretty_print(table([[u_percent,u_percent^2]]))

works fine, putting the table with plots doesn't, and the error is not 
particularly helpful:

/home/sc_serv/sage/local/lib/python2.7/site-packages/sage/misc/decorators.py:471:
 DeprecationWarning: the filename and linkmode arguments are deprecated, use 
save() to save
See http://trac.sagemath.org/17234 for details.
  return func(*args, **kwds)
/home/sc_serv/sage/local/lib/python2.7/site-packages/sage/plot/graphics.py:2014:
 DeprecationWarning: use tmp_filename instead
See http://trac.sagemath.org/17234 for details.
  filename = graphics_filename()


Now, I usually would use graphics_array here but was cribbing off an old 
example before class - is this just not supported?  Anyway, perhaps there 
is something we should fix in how Sagecell handles temp files for 
graphics/rich rep, or so I suspect the problem is.

And if this is all user error, I humbly request better error messages :)  
Thanks, hope this is helpful.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To post to this group, send email to sage-support@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-support.
For more options, visit https://groups.google.com/d/optout.

Reply via email to