I would like to create publication quality tables for output as svg or jpg or png images using python.
I am familiar with a text module that creates nice text tables, but if I have, for example,
data = [['Head 1','Head 2','Head 3'],['Sample Set Type 1',12.8,True],['Sample Set Type 2',15.7,False]]
and I wanted to create something similar to

Is there a module that I can access, or can you tell me the process for this?
source share