DataTaunew | comments | leaders | submitlogin
4 points by lameo 3388 days ago | link | parent

Awesome list!

Not really something you missed, but just something I do different when printing tables:

I use Python's http server

    python -m SimpleHTTPServer
and then use pandas to write my dataframe (df) to a html table

    df.to_html('mytable.html')
Voila, now you have a nice way to preview/look at data.


1 point by glamp 3388 days ago | link

I've never thought to do that but that's really slick!

-----




RSS | Announcements