How to save table output in an exportable manner
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.
It works for me. What is your operating system? What is your Sage version?
@vdelecroix I am using Windows 10 and Sage version 7.6, if that helps.