prjemian / pyRestTable

Format a nice table in reST (reStructuredText) from Python
http://prjemian.github.io/pyRestTable/
2 stars 2 forks source link

write a dictionary as a table #64

Closed prjemian closed 1 year ago

prjemian commented 1 year ago

Write a table starting with a dictionary, similar to pandas.DataFrame

    dd = dict(a=a_array, b=b_array)
    return pd.DataFrame(dd)