How to save table output in an exportable manner

asked 2017-07-14 06:53:29 +0200

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

Hello! I am a sage novice trying to export a table output to some image format (so that it might be shared). I tried using the .save() function as so:

   my_table1 = table(my inputs)
   result = my_table1.transpose()
   result.save('here')

My table outputs properly after I run the program (not featured), but for some reason I receive the following error when I try and save the table:

"Error! /home/sage/Documents/here.sobj is not UTF-8 encoded

Saving disabled.

See Console for more details."

Any help in exporting this table is greatly appreciated. Additionally, if you require any more information please do not hesitate to ask!

EDIT: I am working in Jupyter for Sage on a browser via localhost/8000; not sure if that matters.

edit retag flag offensive close merge delete

Comments

It works for me. What is your operating system? What is your Sage version?

vdelecroix gravatar imagevdelecroix ( 2017-07-15 09:38:24 +0200 )edit

@vdelecroix I am using Windows 10 and Sage version 7.6, if that helps.

ethanzell gravatar imageethanzell ( 2017-07-17 20:07:51 +0200 )edit