Ben Sturmfels

Ben Sturmfels at

I use the Matplotlib library for Python. Here's a default line chart as SVG:

from matplotlib import pyplot
pyplot.plot([1, 2, 3, 4, 5, 6], [1, 4, 9, 16, 32, 64])
with open('chart.svg', 'w') as file:
    pyplot.savefig(file, format='svg')

habi@fmrl.me, Douglas Perkins likes this.