How to save table output in exported manner in Sage

I am a beginner sage trying to export the output of a table to some image format (so that it can be shared). I tried using the .save () function like this:

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

My table is displayed correctly after starting the program (not shown), but for some reason I get the following error when trying to save the table:

"Error! /Home/sage/Documents/here.sobj not encoded in UTF-8

Saving is disabled.

See Console for more details. "

Any help in exporting this table is much appreciated. Also, if you need more information, please feel free to ask!

Reference Information. I work in Jupyter for Sage in a browser through localhost / 8000; not sure if that matters. My OS is Windows 10 and I am using Sage version 7.6.

+4

Source: https://habr.com/ru/post/1681740/


All Articles