I've been screenshotting the dataframes from Jupyter in my notes but it would be really cool if you could save the actual renderings. I looked it up and I think this guy figured out how to do it http://stackoverflow.com/questions/19726663/how-to-save-the-pandas-dataframe-series-data-as-a-figure

Feature request:

DF = pd.DataFrame(somedata)

DF.to_render(path/to/file, format = "pdf")

or something along those lines to get something like: screen shot 2016-08-05 at 8 49 06 am

Comment From: TomAugspurger

Seems out of scope for pandas to me.

That's just HTML, so you can save that to a file with df.to_html() and convert it with something like phantomjs

Comment From: jreback

agreed. out of scope.

Comment From: jolespin

@TomAugspurger thanks Ill make a wrapper for it.

Comment From: famargar

I think it would be great to have that in pandas. The solution already exist (see above) and the demand for the feature is clearly high (50k views on the two StackOverflow questions on the subject)

Comment From: liu431

I see this would be useful as we need the rendered table in the formal writing of a data project.

Comment From: janosh

I assume upvotes in a closed issue go unnoticed. So bumping this to see if @famargar's post can sway maintainers' stance here?